Skip to content
Advertisement

Vue/Nuxt/Vuex – [NUXT:SSR] [ERROR] [vuex] unknown getter

The error appears when I use a v-for loop to go through the ‘allPosts’ data on my div.

The Nuxt documentation says ‘Modules: every .js file inside the store directory is transformed as a namespaced module’. Maybe I’m missing something in this regard?

pages/index.vue

JavaScript

store/index.js

JavaScript

store/posts.js

JavaScript

Advertisement

Answer

You have a number of issues in how you are setting up and accessing your store. Firstly you are creating your store using the “classic mode” which the docs tell us:

This feature is deprecated and will be removed in Nuxt 3.

So in order to be using the latest methods your store/index.js should look like this:

JavaScript

This is not a mistake, you don’t actually need anything in it, just have it exist. There is no need to import vue or vuex or any modules.

Your store/posts.js can largely stay as it is, just change your state, mutations, getters, and actions to be exported constants and delete the bottom export:

JavaScript

Secondly you seem to be using mapGetters incorrectly. If you set up your store like I have above, you can use it in pages/index.vue like so:

//pages.index.vue

JavaScript

Then you can access “allPosts” in your template as you would any computed property or access it with “this.allPosts” in your script.

Advertisement