关于antd-vue a-menu菜单绑定路由的相关问题
作者:晚上八点半 时间:2023-07-02 16:33:12
tips: 路由绑定、菜单跳转、网页后退高亮显示
1. 问题描述
使用antd-vue 的 a-layout布局和a-menu菜单做一个侧边栏菜单,加入vuex配置侧边栏点击事件,实现点击菜单改变路由展示中间部分内容的功能
但是出现了问题:
重复点击路由报错
浏览器刷新/后退 菜单高亮区域没有根据路由的变化产生变化
2. 解决方法
对路由变化进行判断/修改router 的push与replace方法
借助a-menu 的属性::selectedKeys绑定路由地址,就能实现随着路由产生变化
3. 代码
****** 重复点击报错解决:******
方法1:对路径进行判断
methods: {
handelClick(item) {
//判断点击路径与点击菜单路径是否不同
//有效避免重复替换相同路径
if (item.key !== this.$route.path) {
this.$router.push(item.key)
console.log(this.$route.path)
console.log(item)
}
}
}
方法2:在main.js中添加代码
import VueRouter from 'vue-router'
Vue.use(VueRouter)
const originalReplace = VueRouter.prototype.replace;
VueRouter.prototype.replace = function replace(location) {
return originalReplace.call(this, location).catch(err => err);
};
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
****** 浏览器刷新/后退 菜单高亮区域:******
完整代码:
<template>
<a-layout id="components-layout-demo-custom-trigger">
<a-layout-sider v-model="collapsed" :trigger="null" collapsible>
<div class="logo" />
<a-menu theme="dark"
mode="inline"
@click="handelClick"
:selectedKeys="[$route.path]"
>
<a-menu-item key='/register'>
<a-icon type="user" />
<span>注册</span>
</a-menu-item>
<a-menu-item key='/login'>
<a-icon type="login" />
<span>登录</span>
</a-menu-item>
<a-menu-item key='/modify'>
<a-icon type="reload" />
<span>忘记密码</span>
</a-menu-item>
</a-menu>
</a-layout-sider>
<a-layout>
<a-layout-header style="background: #fff; padding: 0">
<a-icon
class="trigger"
:type="collapsed ? 'menu-unfold' : 'menu-fold'"
@click="() => (collapsed = !collapsed)"
/>
<span>登录注册模块</span>
</a-layout-header>
<a-layout-content
:style="{ margin: '24px 16px', padding: '24px', background: '#fff', minHeight: '280px' }"
>
<router-view></router-view>
</a-layout-content>
</a-layout>
</a-layout>
</template>
<script>
export default {
name: 'Body',
data() {
return {
collapsed: false
};
},
mounted() {
this.$router.push('/register')
},
methods: {
handelClick(item) {
if (item.key !== this.$route.path) {
this.$router.push(item.key)
//console.log(this.$route.path)
//console.log(item)
}
}
}
}
</script>
<style>
#components-layout-demo-custom-trigger {
height: 100%;
}
#components-layout-demo-custom-trigger .trigger {
font-size: 18px;
line-height: 64px;
padding: 0 24px;
cursor: pointer;
transition: color 0.3s;
}
#components-layout-demo-custom-trigger .trigger:hover {
color: #1890ff;
}
#components-layout-demo-custom-trigger .logo {
height: 32px;
background: rgba(255, 255, 255, 0.2);
margin: 16px;
}
</style>
关键代码:
<a-menu theme="dark"
mode="inline"
:default-selected-keys="['1']"
@click="handelClick"
:selectedKeys="[$route.path]"
>
<a-menu-item key='/register'>
<a-icon type="user" />
<span>注册</span>
</a-menu-item>
/**
*在a-menu中设置的:selectedKeys="key",绑定当前的路由"[$route.path]"
*所以在a-menu-item的key需要做出改变,改为路径
*同时也方便了后续处理点击事件传入的路径
*/
顺便说下菜单的点击事件:
上面好像说了
演示结果:
来源:https://blog.csdn.net/weixin_45259917/article/details/120131112
标签:antd-vue,a-menu菜单,路由
0
投稿
猜你喜欢
element-plus中如何实现按需导入与全局导入
2024-05-02 17:04:21
MySQL高级特性——数据表分区的概念及机制详解
2024-01-28 12:30:28
浅谈Python traceback的优雅处理
2023-08-06 06:57:42
Python的几种主动结束程序方式
2022-10-12 14:39:25
安装MSSql2005时 “以前的某个程序安装已在安装计算机上创建挂起” 的解决办法
2024-01-22 08:49:39
浅谈python中set使用
2023-05-31 10:57:41
Python使用Requests请求网页方式
2022-10-08 06:01:09
Python re正则表达式元字符分组()用法分享
2021-05-15 12:31:56
使用线框图来简化你的产品设计流程
2011-06-10 13:10:00
加快Vue项目的开发速度的方法
2024-04-28 10:50:20
python requests包的request()函数中的参数-params和data的区别介绍
2021-05-04 18:21:13
详解用node-images 打造简易图片服务器
2024-05-11 10:13:23
Python3爬虫发送请求的知识点实例
2023-04-17 19:16:32
Java连接mysql数据库的详细教程(推荐)
2024-01-26 10:30:35
vue中使用svg封装全局消息提示组件
2024-04-09 10:48:24
python使用pytest接口自动化测试的使用
2022-06-15 05:23:48
asp Response.flush 实时显示进度
2011-04-14 10:31:00
Python语法分析之字符串格式化
2021-10-09 18:00:09
Django连接本地mysql数据库(pycharm)的步骤
2024-01-20 05:05:39
Python简单实现自动删除目录下空文件夹的方法
2021-07-28 20:28:39