How to implement nested highlighting of vue routes

php中世界最好的语言
Release: 2018-05-29 10:02:03
Original
1543 people have browsed it

This time I will bring you how to implement vueroutingnested highlighting, what are the things to noteabout implementing vue routing nested highlighting, the following is a practical case, let’s take a look together take a look.

Look at the code:

//主路由通过v-for循环出来 

数据统计 {{page.pageName}}

//次路由通过URL拼接的方式导航到子路由页面

        

Copy after login
Sub-routing JS:

exprot default{        mounted() { this.routerHop(); }, updated() { //当前页再次点击主路由时重新判断跳转 var url = this.$route.path; if (url === "/statistics/dataStatistics") { this.routerHop(); } }, methods: { //权限判断 isPerson() { let user = this.$store.state.user.userInfo; if (user.userType == 1) { return true } return false; }, routerHop(){ // 客户账号登录只显示错误统计分析页面 if(this.isPerson() === false){ return router.push({name: 'statistics1', params: {showPanel: false}}); } router.push({name: 'statistics3', params: {showPanel: false}}); },        }    } }
Copy after login
Because you are already on the current sub-routing page, when you click the main route navigation again, the mounted hook cannot be triggered. Through the updated hook function, the corresponding sub-route can be found again, thereby solving the bug of clicking on the blank main route page again.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to implement a custom multi-select event in WeChat applet

When select is not used How to implement the drop-down box function under vue

The above is the detailed content of How to implement nested highlighting of vue routes. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!