123456789101112131415161718192021 |
- 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
- })
|