// webpack.config.js
devServer:{
port:'9000',
host:'0.0.0.0',
contentBase:path.join(__dirname,'../dist'),
compress:true,
overlay:{
errors:true
},
open:true,
hot:true,
historyApiFallback:true
}
{
path:'/singer',
component:() => import('../components/singer.vue'),
meta:{
title:'singer-page'
}
},
{
path: '/playerlist',
component: () => import('../components/player-list.vue'),
meta:{
title:'player'
},
children:[
{
path:'player/:id',
name:'player',
props:true,
component:() => import('../components/player.vue')
},
],
},
看不太出来哪里有毛病