import {Suspense,lazy} from 'react'; import Layout from '../page/layout'; const HomeView = lazy(() => import('@/views/HomeView')); const AboutView = lazy(() => import('@/views/AboutView')); const Loading = ()=>(
loading...
); export const routerMenu = [ { path: '/', element: , children:[ { path: '/home', element: ( }> ), }, { path: '/about', element: ( }> ), } ] } ]