[Vuejs]-Vue 3 – Composition API fetching data?

0👍

In the setup function you cannot process a computed function.
You can instead access store.getters[‘categories/getCategories’].value[selectedItem.value].id if you want to process that in the setup function.

Leave a comment