[Vuejs]-Unable to use Vuex Store in Nuxt layouts

0👍

You need to add Vue.use(Vuex), also, you are not including your module in the main store

import { Store } from 'vuex'
import { Sources } from './sources'

Vue.use(Vuex)
export const store = new Store({
modules: {
    Sources 
  }
})

Leave a comment