这次给大家带来Vue.js如何设置路由,Vue.js设置路由的注意事项有哪些,下面就是实战案例,一起来看一下。
① 路由map
在main.js中导入vue-router
import VRouter from 'vue-router'
设置全局路由
Vue.use(VRouter)
实例化router
let router = new VRouter({ // 如果mode设为history, 那么地址就可以不使用哈希(# 哈希)了,就可以直接访问. http://localhost:8080/#/apple ==>> http://localhost:8080/apple mode: 'history', routes: [ // 做一个映射表 { path: '/apple', component: Apple }, { path: '/banana', component: Banana } ] }) /* eslint-disable no-new */new Vue({ el: '#app', router, template: '<App/>', components: { App } })
②路由视图
在app.vue文件中嵌入
<template> <div id="app"> ![](./assets/logo.png) <!-- 访问apple的时候,将apple的视图塞到这个位置 访问banana的时候,将banana的视图塞到这个位置 --> <router-view></router-view> </div></template>
实现效果
③ 路由导航
在app.vue文件中,嵌入router-link标签,该标签可以实现a标签的效果
具体使用:
<template> <div id="app"> ![](./assets/logo.png) <!-- 访问apple的时候,将apple的视图塞到这个位置 访问banana的时候,将banana的视图塞到这个位置 --> <router-view></router-view> <router-link :to="{path:'apple'}">to apple</router-link> <router-link :to="{path:'banana'}">to banana</router-link> </div></template>
效果:
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
Atas ialah kandungan terperinci Vue.js如何设置路由. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!