🌱 角色相关页面草创,icon去哪找呢

This commit is contained in:
BTMuli
2023-05-22 15:28:50 +08:00
parent 1e3ebcf243
commit f0fe7a04a1
5 changed files with 52 additions and 0 deletions

7
src/pages/User/Abyss.vue Normal file
View File

@@ -0,0 +1,7 @@
<template>
<h1>深渊数据获取显示上传</h1>
</template>
<script lang="ts" setup>
</script>
<style lang="css" scoped>
</style>

View 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
View 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
View File

@@ -0,0 +1,7 @@
<template>
<h1>实时便笺数据总览世界探索尘歌壶札记跳转</h1>
</template>
<script lang="ts" setup>
</script>
<style lang="css" scoped>
</style>

View File

@@ -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;