Blame view

src/store/modules/app.js 704 Bytes
任超 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
import Cookies from 'js-cookie'

const state = {
    size: 'small',
    theme: '#409EFF',
    splitScreen: false,
}

const mutations = {
    SET_SIZE: (state, size) => {
        state.size = size
        Cookies.set('size', size)
    },
    UPDATE_THEME (state, val) {
        state.theme = val;
    },
    SET_SCREEN (state, val) {
        state.splitScreen = val;
    },
}

const actions = {
    setSize ({ commit }, size) {
        commit('SET_SIZE', size)
    },
    updateTheme ({ commit }, val) {
        commit('UPDATE_THEME', val)
    },
    settScreen ({ commit }, val) {
        commit('SET_SCREEN', val)
    },
}

export default {
    namespaced: true,
    state,
    mutations,
    actions
}