淺談vue 二級路由嵌套和二級路由高亮問題
第一層路由我寫在app.vue里面。如圖所示:
footer.vue:
二級路由是這樣:
index.js里面的配置:
效果圖:
效果出來了,又出現(xiàn)新的問題,就是點擊二級路由的時候,默認的二級路由高亮不會去掉,如圖所示:
在網(wǎng)上看到別人用exact方法,即在默認的二級路由里面加上exact,如圖所示:
補充知識:vue - 子路由-路由嵌套
描述:子路由,也叫路由嵌套,采用在children后跟路由數(shù)組來實現(xiàn),數(shù)組里和其他配置路由基本相同,需要配置path和component,然后在相應部分添加<router-view/>來展現(xiàn)子頁面信息,相當于嵌入iframe。
Home.vue
<template> <div class="hello"> <h1>{{ msg }}</h1> <!-- 添加子路由導航 --> <p>導航 : <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: '/', // 默認頁面重定向到主頁 redirect: '/home' }, { path: '/home', // 主頁路由 name: 'Home', component: Home, children:[ // 嵌套子路由 { path:'one', // 子頁面1 component:One }, { path:'two', // 子頁面2 component:Two }, ] } ] })
以上這篇淺談vue 二級路由嵌套和二級路由高亮問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
vue路由警告:Duplicate named routes definition問題
這篇文章主要介紹了vue路由警告:Duplicate named routes definition問題及解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-09-09vue3+Typescript實現(xiàn)路由標簽頁和面包屑功能
在使用 Vue.js 開發(fā)后臺管理系統(tǒng)時,經(jīng)常會遇到需要使用路由標簽頁的場景,這篇文章主要介紹了vue3+Typescript實現(xiàn)路由標簽頁和面包屑,需要的朋友可以參考下2023-05-05vue 重塑數(shù)組之修改數(shù)組指定index的值操作
這篇文章主要介紹了vue 重塑數(shù)組之修改數(shù)組指定index的值操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-08-08vue 數(shù)據(jù)操作相關(guān)總結(jié)
這篇文章主要介紹了vue 數(shù)據(jù)操作的相關(guān)資料,幫助大家更好的理解和使用vue,感興趣的朋友可以了解下2020-12-12