使用Vue-Router 2实现路由功能实例详解
vue-router是vue.js官方的路由插件,它和vue.js是深度集成的,适合用于构建单页面应用。vue的单页面应用是基于路由和组件的,路由用于设定访问路径,并将路径和组件映射起来。传统的页面应用,是用一些超链接来实现页面切换和跳转的。在vue-router单页面应用中,则是路径之间的切换,也就是组件的切换。
注意:vue-router 2只适用于vue2.x版本,下面我们是基于vue2.0讲的如何使用vue-router 2实现路由功能。
推荐使用npm安装。
npm install vue-router
一、使用路由
在main.js中,需要明确安装路由功能:
import vue from 'vue' import vuerouter from 'vue-router' import app from './app.vue' vue.use(vuerouter)
1.定义组件,这里使用从其他文件import进来
import index from './components/index.vue' import hello from './components/hello.vue'
2.定义路由
const routes = [ { path: '/index', component: index }, { path: '/hello', component: hello }, ]
3.创建 router 实例,然后传 routes 配置
const router = new vuerouter({ routes })
4.创建和挂载根实例。通过 router 配置参数注入路由,从而让整个应用都有路由功能
const app = new vue({ router, render: h => h(app) }).$mount('#app')
经过上面的配置之后呢,路由匹配到的组件将会渲染到app.vue里的<router-view></router-view>
那么这个app.vue里应该这样写:
<template> <div id="app"> <router-view></router-view> </div> </template>
index.html里呢要这样写:
<body> <div id="app"></div> </body>
这样就会把渲染出来的页面挂载到这个id为app的div里了。
二、重定向 redirect
const routes = [ { path: '/', redirect: '/index'}, // 这样进/ 就会跳转到/index { path: '/index', component: index } ]
三、嵌套路由
const routes = [ { path: '/index', component: index, children: [ { path: 'info', component: info} ] } ]
通过/index/info就可以访问到info组件了
四、懒加载
const routes = [ { path: '/index', component: resolve => require(['./index.vue'], resolve) }, { path: '/hello', component: resolve => require(['./hello.vue'], resolve) }, ]
通过懒加载就不会一次性把所有组件都加载进来,而是当你访问到那个组件的时候才会加载那一个。对于组件比较多的应用会提高首次加载速度。
五、<router-link>
在vue-router 1中,使用的是
在vue-router 2中,使用了<router-link></router-link>
替换1版本中的a标签
<!-- 字符串 --> <router-link to="home">home</router-link> <!-- 渲染结果 --> <a href="home" rel="external nofollow" >home</a> <!-- 使用 v-bind 的 js 表达式 --> <router-link v-bind:to="'home'">home</router-link> <!-- 不写 v-bind 也可以,就像绑定别的属性一样 --> <router-link :to="'home'">home</router-link> <!-- 同上 --> <router-link :to="{ path: 'home' }">home</router-link> <!-- 命名的路由 --> <router-link :to="{ name: 'user', params: { userid: 123 }}">user</router-link> <!-- 带查询参数,下面的结果为 /register?plan=private --> <router-link :to="{ path: 'register', query: { plan: 'private' }}">register</router-link>
六、路由信息对象
1.$route.path
字符串,对应当前路由的路径,总是解析为绝对路径,如 "/foo/bar"。
2.$route.params
一个 key/value 对象,包含了 动态片段 和 全匹配片段,如果没有路由参数,就是一个空对象。
3.$route.query
一个 key/value 对象,表示 url 查询参数。例如,对于路径 /foo?user=1,则有 $route.query.user == 1,如果没有查询参数,则是个空对象。
4.$route.hash
当前路由的 hash 值 (不带 #) ,如果没有 hash 值,则为空字符串。
5.$route.fullpath
完成解析后的 url,包含查询参数和 hash 的完整路径。
6.$route.matched
一个数组,包含当前路由的所有嵌套路径片段的 路由记录 。路由记录就是 routes 配置数组中的对象副本(还有在 children 数组)。
综合上述,一个包含重定向、嵌套路由、懒加载的main.js如下:
import vue from 'vue' import vuerouter from 'vue-router' import app from './app' vue.use(vuerouter) const router = new vuerouter({ routes:[ { path: '/', redirect: '/index' }, { path: '/index', component: resolve => require(['./components/index.vue'], resolve), children:[ { path: 'info', component: resolve => require(['./components/info.vue'], resolve) } ] }, { path: '/hello', component: resolve => require(['./components/hello.vue'], resolve) }, ] }) const app = new vue({ router, render: h => h(app) }).$mount('#app')
更详细的vue-router功能请参考文档:
总结
以上所述是小编给大家介绍的使用vue-router 2实现路由功能实例详解,希望对大家有所帮助
上一篇: 悲催的年终奖,你中枪没有
下一篇: 深入理解Vue 单向数据流的原理
推荐阅读
-
Vue.js:使用Vue-Router 2实现路由功能介绍
-
thinkphp路由规则使用示例详解和伪静态功能实现(apache重写)
-
使用vue-router beforEach实现判断用户登录跳转路由筛选功能
-
使用Vue-Router 2实现路由功能实例详解
-
thinkphp路由规则使用示例详解和伪静态功能实现(apache重写)_PHP教程
-
thinkphp路由规则使用示例详解和伪静态功能实现(apache重写)
-
AngularJS通过ng-route实现基本的路由功能实例详解
-
Vue.js:使用Vue-Router 2实现路由功能介绍
-
thinkphp路由规则使用示例详解和伪静态功能实现(apache重写)_php实例
-
Vue-Router2实现路由功能实例讲解