layout下的主页和搜索页
{
path:'/',
redirect:'/main'
},
{
path: '/main',
//马上跳转到首页
redirect:'/main/index',
component: MainView,
children:[
{
path:'index',
component:IndexView,
// 元信息 给当前路有对象添加绑定值
meta:{
title:'首页'
},
},
{
path:'search',
component:SearchView,
meta:{
title:'搜索'
}
},
]
},
歌单详情和播放器
{
path: '/songList',
component:songList
},
{
path: '/songPlay',
component:songPlay
},