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