vue路由的使用

Posted chenlw

tags:

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

//配置路由
Vue.use(Router)

export default new Router({
  routes: [{
      path: ‘/‘,
      name: ‘Home‘,
      component: Home
    },{
      path: ‘/city‘,
      name: ‘City‘,
      component: City
    }]
})

  

//在子组件中使用路由
<router-link to="/city"> //to="/city"  路由的去向
<div class="head-right"> {{this.city}} <span class="iconfont arror-icon"></span> </div> </router-link>

  

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

VSCode自定义代码片段11——vue路由的配置

vue路由对象($route)参数简介

vue 路由对象(常用的)

vue知识点-$route和$router

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段1——vue主模板