main.js文件中没有引入store
main.js
store
添加如下代码即可
import store from "./store"; new Vue({ el: '#app', router, store, render: h => h(App) })