reason
store
is not introduced in the main. JS
file
Solution
Add the following code
import store from "./store";
new Vue({
el: '#app',
router,
store,
render: h => h(App)
})
reason
store
is not introduced in the main. JS
file
Solution
Add the following code
import store from "./store";
new Vue({
el: '#app',
router,
store,
render: h => h(App)
})