雨山



Fixing 'Uncaught ReferenceError: __VUE_PROD_DEVTOOLS__ is not defined'

A particular error has kept occurring when I try to use Vuex: "Uncaught ReferenceError: VUE_PROD_DEVTOOLS is not defined". This solves it:

const {createStore} = require("vuex")

const store = createStore({
  devtools: false, // this!
  state: {...},
  getters: {...},
  mutations: {...},
  actions: {...},
})

Sources