app.js
786 Bytes
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
40
41
42
43
44
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:34:44
*/
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
}