[Vuejs]-What mistake am I making when doing a getter on a state data and want to show the result in a component?

0👍

I finally found the error. The way to call the store getter was wrong. I clarify that ‘lista’ is the name of the module

<script>

let title = computed(() => $store.getters["lista/title"])

</script>

Leave a comment