Vuex的使用

142 阅读1分钟

安装store

npm install --save vuex

src目录新建store文件夹和index.js文件,index.js中引入

import Vuex from 'vuex'
Vue.use(Vuex)

未完待续。。。