store---index.js

Posted zhaofeis

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了store---index.js相关的知识,希望对你有一定的参考价值。

import Vue from ‘vue‘
import Vuex from ‘vuex‘
import Api from ‘../lib/api/api‘
import Utils from ‘../lib/utils/utils‘

Vue.use(Vuex);

let store = new Vuex.Store({
state: {
platformName: ‘‘
},
mutations: {
// 网站基本信息
baseConfig(state, data) {
state.baseConfig = data;
},
},
actions: {
// 网站基本信息
baseConfig({state, commit }) {
// Api.baseConfig().then( response => {
// if (response[‘success‘]) {
// commit(‘baseConfig‘, response.data);
// }
// })
},
}
});

export default store;

以上是关于store---index.js的主要内容,如果未能解决你的问题,请参考以下文章