1. export default new Router({
    2. mode:"hash",
    3. routes:[
    4. ...
    5. {
    6. path:'/detail',
    7. name:"detail",
    8. /* 异步路由 */
    9. component:()=>import('@/pages/Detail')
    10. }
    11. })