路由重定向
jsx
const routes = [
{
path: '/',
redirect: '/home' // 重定向
},
{
path: '/home',
name: 'home',
component: HomeView
},
]
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11