1234567891011121314151617181920212223 |
- import Vue from 'vue'
- import Vuex from 'vuex'
- Vue.use(Vuex)
- const store = new Vuex.Store({
- state: {
- isLogin: false,
- luyou:1,
- userInfo: {},
- nCount:0,
- api: 'https://pbl.cocorobo.cn/api/pbl/',
- // api: 'http://localhost:7003/pbl/',
- },
- mutations: {
- update(state, [key, value]) {
- state[key] = value;
- },
- }
- })
- export default store
|