spring 基础框架建设

12345678910111213141516
  1. import BasicLayout from '@/layouts/BasicLayout';
  2. import Dashboard from '@/pages/Dashboard';
  3. const routerConfig = [
  4. {
  5. path: '/',
  6. component: BasicLayout,
  7. children: [
  8. {
  9. path: '/',
  10. component: Dashboard,
  11. },
  12. ],
  13. },
  14. ];
  15. export default routerConfig;