Initial commit

This commit is contained in:
2026-01-29 14:45:05 +08:00
commit cab00f6f3e
34 changed files with 5025 additions and 0 deletions

22
src/views/home/index.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<van-button @click="handleClick">跳转记录</van-button>
</template>
<script setup name="home">
const router = useRouter()
// 跳转按钮操作
const handleClick = () => {
console.log('跳转记录')
}
onMounted(() => {
console.log('onMounted')
})
onActivated(() => {
console.log('onActivated')
})
</script>
<style lang="scss" scoped></style>