whois/stores/style.ts
2024-03-02 19:48:03 +08:00

15 lines
274 B
TypeScript

import { defineStore } from 'pinia'
export const useStyleStore = defineStore('style', {
state: () => {
return {
isPage: true,
}
},
actions: {
setIsPage(isPage: boolean) {
this.isPage = isPage
},
},
})