first commit.

This commit is contained in:
2023-01-04 10:20:18 +08:00
commit 919fcf5ba9
39 changed files with 4196 additions and 0 deletions

16
src/oj/user/signup.vue Normal file
View File

@@ -0,0 +1,16 @@
<script setup lang="ts">
import { useSignupStore } from "../stores/signup";
const store = useSignupStore();
</script>
<template>
<el-dialog
:close-on-click-modal="false"
:close-on-press-escape="false"
v-model="store.visible"
title="注册"
>
</el-dialog>
</template>
<style scoped></style>