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