vue-router中的 addRoutes 方法

    作用:动态添加路由配置

    注意:addRoutes的参数一定是一个数组

    格式:

    1. router.addRoutes([路由配置对象])
    2. 或者:
    3. this.$router.addRoutes([路由配置对象])

    代码示例:

    1. //按钮
    2. <button @click="hAddRoute">addRoutes</button>
    3. //回调
    4. hAddRoute(){
    5. this.$router.addRoutes([{
    6. path:'/abc',
    7. component:() => import('@/views/abc')
    8. }])
    9. }