This commit is contained in:
2023-01-13 22:11:28 +08:00
parent 46fcccda35
commit d45783334d
41 changed files with 544 additions and 256 deletions

View File

@@ -1,4 +1,4 @@
import { Code } from "../../utils/types"
import { Code } from "utils/types"
export const useCodeStore = defineStore("code", () => {
const code = reactive<Code>({

View File

@@ -1,13 +0,0 @@
export const useSignupStore = defineStore("signup", () => {
const [visible] = useToggle()
function show() {
visible.value = true
}
function hide() {
visible.value = false
}
return { visible, show, hide }
})