/**
* 定义路由信息
*/
const routes = [
{
path: '/',
redirect: '/page1'
},
{
path: '/page1',
component: {
template: '
当前是 Page1 的路由
'
}
},
{
path: '/page2',
component: {
template: '当前是 Page2 的路由
'
}
},
{
path: '/page3',
component: {
template: '当前是 Page3 的路由
'
}
}
];