12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
import { defineStore } from 'pinia'
|
|
|
|
export const useAppStore = defineStore('app', {
|
|
state: () => ({
|
|
version: '1.0.1',
|
|
viewRecordType: 'calendar',
|
|
}),
|
|
actions: {
|
|
|
|
},
|
|
})
|