You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
367 B
17 lines
367 B
import Vue from 'vue'
|
|
import Vuex from 'vuex'
|
|
|
|
Vue.use(Vuex) // vue的插件机制
|
|
|
|
// Vuex.Store 构造器选项
|
|
const store = new Vuex.Store({
|
|
// 为了不和页面或组件的data中的造成混淆,state中的变量前面建议加上$符号
|
|
state: {
|
|
// 用户信息
|
|
$userInfo: {
|
|
id: 1
|
|
}
|
|
}
|
|
})
|
|
|
|
export default store
|
|
|