import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) // 使用插件 // 导出store实例 export default new Vuex.Store({ state: { }, mutations: { }, actions: { } })