vue-router 1

Posted rclw

tags:

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

redirect: ‘/buyOne‘  // 重定向
 
components: { // 复数s , 同时展示不同内容 不同router-view 用name区分 
        default: BuyOne,
        bob: Test
      }
 
path: ‘/about/:id‘,
    //   name: ‘About‘,
    //   props: true, // 设为true,则可以在该页面的props中接收到id
 
this.$route.params
 // params id有利于SEO(搜索引擎优化) /a/b  (SEM搜索引擎营销)
      // query主要用于查询

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

Vue-Router相关

vue路由核心要点(vue-router)

Vue 2 Laravel 5.3 Vue-router 2 设置 Vue-router 的正确方法

vue-router

vue-router使用

简单实现VUE-Router