feat: 添加链上地址页面,更新路由配置并优化用户信息组件链接

This commit is contained in:
2025-12-13 15:02:39 +07:00
parent 9f74717c56
commit cfee4c1c77
5 changed files with 205 additions and 5 deletions

View File

@@ -6,6 +6,10 @@ const routes: Array<RouteRecordRaw> = [
path: "/",
redirect: "/layout/riwa",
},
{
path: "/:pathMatch(.*)*",
redirect: "/layout/riwa",
},
{
path: "/layout",
component: () => import("@/components/layout/default.vue"),
@@ -28,6 +32,10 @@ const routes: Array<RouteRecordRaw> = [
},
],
},
{
path: "/onchain-address",
component: () => import("@/views/onchain-address/index.vue"),
},
];
const router = createRouter({