feat:搭建基本框架

This commit is contained in:
2025-06-23 19:39:45 +08:00
parent de5537ee1b
commit e09aed87d1
38 changed files with 2106 additions and 83 deletions

View File

@@ -1,11 +1,17 @@
<template>
<div>
登录
<el-button type="primary" @click="loginClick">登录</el-button>
</div>
</template>
<script setup lang="ts">
import { useRouter } from 'vue-router'
const router = useRouter()
const loginClick = () => {
router.push('/record')
}
</script>
<style scoped lang="scss">