2018-03-28

```javascript 

import Vue from 'vue'

import Vuex from 'vuex' 

Vue.use(Vuex)

// 使用插件

// 导出store实例

export default new Vuex.Store

({state: { },

mutations: { },

actions: { }})

```

你可能感兴趣的:(2018-03-28)