我看教程里都是这么写store.js的
import Vue from 'vue' import Vuex from 'vuex'
我的store是这么写的,下方代码
import Vue from 'vue'; import Vuex from 'vuex'; Vue.use(Vuex); const state = { a:666} const mutations = { } export default new Vuex.Store({ state, mutations })
我在然后就报错了,说没有找到vuex文件,下图
这是我的目录,下图
所以vuex到底是个什么东西,vuex.js?还是什么其它东西,应该怎么导入
婷婷同学_