9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
|
|
import { defineStore } from 'pinia'
|
||
|
|
|
||
|
|
export const useAppStore = defineStore({
|
||
|
|
id: 'userStore',
|
||
|
|
state: () => ({}),
|
||
|
|
getters: {},
|
||
|
|
actions: {}
|
||
|
|
})
|