-
在项目中导入Vuex
npm i vuex
-
创建并配置文件 /src/store/index.js
//引入Vue核心库 import Vue from 'vue' //引入Vuex import vuex from "vuex"; //使用Vuex插件 Vue.use(vuex) //准备 actions 对象 , 响应组件用户动作 const actions ={} //准备 mutations 对象 , 修改state中的数据 const mutations = {} // 准备 state 对象, 保存具体的数据 const state = {} //创建并暴露store export default new vuex.Store({ actions, mutations, state })
-
在main.js中导入并使用