| 12345678910111213141516 |
- import { defineStore } from "pinia";
- import { ref } from "vue";
- export const useVerificationGateStore = defineStore("verificationGate", () => {
- const open = ref(false);
- const requestVerification = () => {
- open.value = true;
- };
- const close = () => {
- open.value = false;
- };
- return { open, requestVerification, close };
- });
|