9 lines
131 B
TypeScript
9 lines
131 B
TypeScript
// Utilities
|
|
import { defineStore } from 'pinia'
|
|
|
|
export const useAppStore = defineStore('app', {
|
|
state: () => ({
|
|
//
|
|
})
|
|
})
|