vue router 常用操作

Posted zsg88

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue router 常用操作相关的知识,希望对你有一定的参考价值。

1.  普通路由

const routes = [
     path: ‘/index‘, component: index 
]

2. 重定向 redirect

const routes = [
     path: ‘/‘, redirect: ‘/index‘,
     path: ‘/index‘, component: index 
]

3. 嵌套路由

const routes = [
     path: ‘/index‘, component: index,
        children: [
             path: ‘info‘, component: info
        ]
     
]

4. 懒加载

const routes = [
     path: ‘/index‘, component: () => import(‘@/views/index.vue‘),
     path: ‘/hello‘, component: () => import(‘@/views/hello.vue‘) 
]

 

以上是关于vue router 常用操作的主要内容,如果未能解决你的问题,请参考以下文章

详解vue-router 2.0 常用基础知识点之router-link

(转) vue-router 2.0 常用基础知识点之router.push()

转:vue-router 2.0 常用基础知识点之router.push()

Vue.js常用插件之router路由(上)

vue-router 2.0 常用基础知识点之router-link

Vue中router-link常用属性-使用案例