This lesson is for members. Join us?
Subscribe now to get instant access to this course, plus a full library of Vue.js courses tailored to the plan you choose.
Categories, Collections of Forums
In the previous lessons you probably thought that it wouldn’t be enough with just a way to group forums - and yes, you are right - we need categories as well. A category is a collection 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>
