Untitled



title: Fixing "Uncaught ReferenceError: VUE_PROD_DEVTOOLS is not defined" tags: web, javascript, programming, vue, vuex, js

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