vue-pro/yudao-ui-app/store/index.js

27 lines
438 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex) // vue的插件机制
// Vuex.Store 构造器选项
const store = new Vuex.Store({
// 为了不和页面或组件的data中的造成混淆state中的变量前面建议加上$符号
state: {
// 用户信息
$userInfo: {
id: ''
}
},
mutations: {
},
actions: {
},
getters:{
}
})
export default store