11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
|
import {defineStore} from "pinia";
|
||
|
|
||
|
export const useLoadStore = defineStore('LoadStore', {
|
||
|
state: () => ({
|
||
|
LayoutLoad: false,
|
||
|
}),
|
||
|
persist: {
|
||
|
storage: persistedState.localStorage,
|
||
|
},
|
||
|
})
|