mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-14 09:38:13 +08:00
🌱 角色相关页面草创,icon去哪找呢
This commit is contained in:
7
src/pages/User/Abyss.vue
Normal file
7
src/pages/User/Abyss.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<h1>深渊数据获取、显示、上传</h1>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
</script>
|
||||
<style lang="css" scoped>
|
||||
</style>
|
||||
7
src/pages/User/Characters.vue
Normal file
7
src/pages/User/Characters.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<h1>角色数据获取、展示、详情</h1>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
</script>
|
||||
<style lang="css" scoped>
|
||||
</style>
|
||||
7
src/pages/User/Gacha.vue
Normal file
7
src/pages/User/Gacha.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<h1>祈愿数据获取、展示、统计</h1>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
</script>
|
||||
<style lang="css" scoped>
|
||||
</style>
|
||||
7
src/pages/User/Info.vue
Normal file
7
src/pages/User/Info.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<h1>实时便笺、数据总览、世界探索、尘歌壶、札记跳转</h1>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
</script>
|
||||
<style lang="css" scoped>
|
||||
</style>
|
||||
@@ -8,6 +8,10 @@
|
||||
// user test
|
||||
import test from "../../pages/User/test.vue";
|
||||
// user main
|
||||
import Abyss from "../../pages/User/Abyss.vue";
|
||||
import Characters from "../../pages/User/Characters.vue";
|
||||
import Gacha from "../../pages/User/Gacha.vue";
|
||||
import Info from "../../pages/User/Info.vue";
|
||||
// user sub
|
||||
|
||||
const userRoutes = [
|
||||
@@ -16,6 +20,26 @@ const userRoutes = [
|
||||
name: "测试",
|
||||
component: test,
|
||||
},
|
||||
{
|
||||
path: "/user/abyss",
|
||||
name: "深渊记录",
|
||||
component: Abyss,
|
||||
},
|
||||
{
|
||||
path: "/user/characters",
|
||||
name: "我的角色",
|
||||
component: Characters,
|
||||
},
|
||||
{
|
||||
path: "/user/gacha",
|
||||
name: "祈愿记录",
|
||||
component: Gacha,
|
||||
},
|
||||
{
|
||||
path: "/user/info",
|
||||
name: "基本信息",
|
||||
component: Info,
|
||||
},
|
||||
];
|
||||
|
||||
export default userRoutes;
|
||||
|
||||
Reference in New Issue
Block a user