skyouc
2025-05-04 668e5ccf4d4f162800c67d94e6bbb9d4a2fd5cfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const state = {
    dynamicfields: [],
}
const getters = {}
const mutations = {
    setFields(state, val) {
        state.dynamicFields = [...val];
    },
}
const actions = {
 
}
export default {
    namespaced: true, // 开启命名空间
    state,
    getters,
    actions,
    mutations
};