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主要用于查询

猜你喜欢

转载自www.cnblogs.com/rclw/p/12046585.html