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