0๐
โ
You are not using mapState
in a correct way.
Change this:
computed: mapState(["filters", "categories"])
into
computed: { ...mapState(["filters", "categories"]) }
For further information, you can check:
https://forum.vuejs.org/t/dont-understand-how-to-use-mapstate-from-the-docs/14454
0๐
You should to return something from your function and assign a initial value to your collectionsTotal variable:
getCollectionTotal(cat) {
let collectionsTotal = ''; // or let collectionsTotal = 0;
collectionsTotal += cat.collections_number;
return collectionsTotal;
}
Source:stackexchange.com