| 12345678910111213141516 |
- import type { Ref } from 'vue'
- import { ref } from 'vue'
- import { defineStore } from 'pinia'
- export const useAppStore = defineStore('app', () => {
- const isNoBot: Ref<boolean> = ref(false)
- const setIsNoBot = (value: boolean) => {
- isNoBot.value = value
- }
- return {
- isNoBot,
- setIsNoBot
- }
- })
|