import { defineStore } from 'pinia'; export const useDeviceStore = defineStore('device', { state: () => ({ // 设备状态,使用对象或数组等复杂数据结构也可以 device: null, // 初始值设置为 null 或其他合适的默认值 }), actions: { // 编辑设备具体信息 function editDevice(deviceInfo) { this.device = deviceInfo; } } });