Blame view

src/store/index.js 283 Bytes
61c95af3   夏洋涛   feat: 创建
1
2
3
4
5
6
import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

export default new Vuex.Store({
9e82c267   夏洋涛   feat: 个人中心更新
7
    state: {
1399205c     feat:研学成果改版
8
        schoolName: []
9e82c267   夏洋涛   feat: 个人中心更新
9
10
11
12
13
14
15
16
17

    },
    mutations: {
        changeSchool(state, params) {
            state.schoolName = params
        }
    },
    actions: {},
    modules: {}