import { defineStore } from 'pinia' export const useAppInfoStore = defineStore('appInfo', { state: () => { return { appId: '', version: '' } }, actions: { updateAppId(appId) { this.appId = appId }, updateVersion(version) { this.version = version } }, unistorage: true })