mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
fix: display problem of menu item's title in collapsed state; 🐛
修复:折叠状态下菜单项标题的显示问题;
This commit is contained in:
parent
f0e9a50919
commit
556b5bf6fc
@ -134,10 +134,10 @@ export default {
|
||||
return h(
|
||||
Item, {key: menu.fullPath},
|
||||
[
|
||||
h('router-link', {props: {to: menu.fullPath}},
|
||||
h('router-link', {props: {to: menu.fullPath}, attrs: {style: 'overflow:hidden;white-space:normal;text-overflow:clip;'}},
|
||||
[
|
||||
this.renderIcon(h, menu.meta ? menu.meta.icon : 'none', menu.fullPath),
|
||||
h('span', [this.$t(getI18nKey(menu.fullPath))])
|
||||
this.$t(getI18nKey(menu.fullPath))
|
||||
]
|
||||
)
|
||||
]
|
||||
@ -145,10 +145,10 @@ export default {
|
||||
},
|
||||
renderSubMenu: function (h, menu) {
|
||||
let this_ = this
|
||||
let subItem = [h('span', {slot: 'title'},
|
||||
let subItem = [h('span', {slot: 'title', attrs: {style: 'overflow:hidden;white-space:normal;text-overflow:clip;'}},
|
||||
[
|
||||
this.renderIcon(h, menu.meta ? menu.meta.icon : 'none', menu.fullPath),
|
||||
h('span', [this.$t(getI18nKey(menu.fullPath))])
|
||||
this.$t(getI18nKey(menu.fullPath))
|
||||
]
|
||||
)]
|
||||
let itemArr = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user