import {defineStore} from "pinia"; export const useConfigStore = defineStore('config', { state: () => ({ all: {}, mac: [], mType: 3, // 3 BMI(默认);4 肺活量;5 坐位体前屈; }), getters: {}, actions: { clear() { this.all = {} this.mac = [] this.mType = -1 }, } })