国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

淺談vue 二級路由嵌套和二級路由高亮問題

瀏覽:120日期:2022-12-14 17:24:58

第一層路由我寫在app.vue里面。如圖所示:

淺談vue 二級路由嵌套和二級路由高亮問題

footer.vue:

淺談vue 二級路由嵌套和二級路由高亮問題

二級路由是這樣:

淺談vue 二級路由嵌套和二級路由高亮問題

index.js里面的配置:

淺談vue 二級路由嵌套和二級路由高亮問題

效果圖:

淺談vue 二級路由嵌套和二級路由高亮問題

效果出來了,又出現(xiàn)新的問題,就是點(diǎn)擊二級路由的時候,默認(rèn)的二級路由高亮不會去掉,如圖所示:

淺談vue 二級路由嵌套和二級路由高亮問題

在網(wǎng)上看到別人用exact方法,即在默認(rèn)的二級路由里面加上exact,如圖所示:

淺談vue 二級路由嵌套和二級路由高亮問題

補(bǔ)充知識:vue - 子路由-路由嵌套

描述:子路由,也叫路由嵌套,采用在children后跟路由數(shù)組來實(shí)現(xiàn),數(shù)組里和其他配置路由基本相同,需要配置path和component,然后在相應(yīng)部分添加<router-view/>來展現(xiàn)子頁面信息,相當(dāng)于嵌入iframe。

淺談vue 二級路由嵌套和二級路由高亮問題

Home.vue

<template> <div class='hello'> <h1>{{ msg }}</h1> <!-- 添加子路由導(dǎo)航 --> <p>導(dǎo)航 : <router-link to='/home'>首頁</router-link> | <router-link to='/home/one'>-子頁面1</router-link> | <router-link to='/home/two'>-子頁面2</router-link> </p> <!-- 子頁面展示部分 --> <router-view/> </div></template><script>export default { name: ’Home’, data () { return { msg: ’Home Page!’ } }}</script><style scoped></style>

One.vue /Two.vue

<template> <div class='hello'> <h1>{{ msg }}</h1> </div></template><script>export default { name: 'One', data() { return { msg: 'Welcome to One!' }; }};</script><!-- Add 'scoped' attribute to limit CSS to this component only --><style scoped>h1,h2 { font-weight: normal;}ul { list-style-type: none; padding: 0;}li { display: inline-block; margin: 0 10px;}a { color: #42b983;}</style>

index.js

import Vue from ’vue’import Router from ’vue-router’import Home from ’@/components/Home’import One from ’@/components/One’ import Two from ’@/components/Two’Vue.use(Router)export default new Router({ routes: [ { path: ’/’, // 默認(rèn)頁面重定向到主頁 redirect: ’/home’ }, { path: ’/home’, // 主頁路由 name: ’Home’, component: Home, children:[ // 嵌套子路由 {path:’one’, // 子頁面1component:One }, {path:’two’, // 子頁面2component:Two }, ] } ]})

以上這篇淺談vue 二級路由嵌套和二級路由高亮問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 南城县| 静海县| 嘉兴市| 新乡市| 札达县| 孝感市| 海淀区| 德兴市| 出国| 甘谷县| 蕉岭县| 府谷县| 璧山县| 铜梁县| 临湘市| 珲春市| 长沙市| 罗山县| 阿合奇县| 罗定市| 海盐县| 恩平市| 米泉市| 防城港市| 普宁市| 保山市| 高邑县| 青海省| 焦作市| 蛟河市| 桓台县| 通化市| 沁阳市| 锦屏县| 太谷县| 龙门县| 卓尼县| 久治县| 正阳县| 浪卡子县| 且末县|