Untitled
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: {...},
})