Vue.js 3 Options API Masterclass - Organizing the Application - Introducing Categories, Collections of Forums
In this lesson, we'll implement Categories in our application. Categories are collections of forums. It is the very first node in our application structure, and it is of great organizational help!
Since we have seen how to implement this functionality, this is a great opportunity to build something on your own to practice what you’ve learned.
Hints
-
CategoryListItemwill need an array of category’s forums. -
PageCategorycan useCategoryListItem. -
Instead of re-creating the forum list items you should use the
ForumListcomponent in theCategoryListItem. -
ForumListwon’t be used outside of theCategoryrelated components. So,ForumList's template can render a list of forums without having a list title. (by now the list title isForums) -
Example
CategoryListItemtemplate:
<div class="forum-list">
<h2 class="list-title">
<router-link :to="{name: 'Category', params: {id: category['.key']}}">
{{ category.name }}
</router-link>
</h2>
<ForumList :forums="categoryForums"/>
</div>