zjj
2025-04-18 ef63279c0a2282c7c54cf8e90fc015fcd36a6ec3
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
};