'use client' import { UserProfile } from '@clerk/nextjs' import { useRouter } from 'next/router' import DashboardMenuList from './DashboardMenuList' /** * 仪表盘内容主体 * 组件懒加载 * @returns */ export default function DashboardBody() { const asPath = useRouter()?.asPath return (
{asPath === '/dashboard' &&
控制台首页
} {(asPath === '/dashboard/user-profile' || asPath === '/dashboard/user-profile/security') && ( )} {asPath === '/dashboard/membership' &&
会员
} {asPath === '/dashboard/order' &&
订单
} {asPath === '/dashboard/favorite' &&
收藏
}
) }