feat: add member detail

pull/119/head
xingyu4j 2025-05-28 21:59:47 +08:00
parent dbf948020e
commit 693595b334
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import type { RouteRecordRaw } from 'vue-router';
const routes: RouteRecordRaw[] = [
{
path: '/member/user/detail',
component: () => import('#/views/member/user/modules/detail.vue'),
name: 'MemberUserDetail',
meta: {
title: '会员详情',
icon: 'lucide:user',
hideInMenu: true,
},
},
];
export default routes;

View File

@ -0,0 +1,5 @@
<template>
<div>
<h1>会员详情</h1>
</div>
</template>