router.config.ts 149 B

1234567891011
  1. export default [
  2. {
  3. path: '/',
  4. routes: [
  5. { path: '/', redirect: '/login' },
  6. {
  7. component: '404',
  8. },
  9. ],
  10. },
  11. ];