fix: the problem that side menu not work in IE; 🐛
修复:IE 浏览器下侧边栏不能正常工作的bug;
This commit is contained in:
@@ -112,7 +112,7 @@ export default {
|
|||||||
return h(
|
return h(
|
||||||
Item, {key: menu.fullPath},
|
Item, {key: menu.fullPath},
|
||||||
[
|
[
|
||||||
h('a', {attrs: {href: '#' + menu.fullPath}},
|
h('router-link', {props: {to: menu.fullPath}},
|
||||||
[
|
[
|
||||||
this.renderIcon(h, menu.meta ? menu.meta.icon : 'none'),
|
this.renderIcon(h, menu.meta ? menu.meta.icon : 'none'),
|
||||||
h('span', [this.$t(menu.fullPath.substring(1).replace(new RegExp('/', 'g'), '.') + '.name')])
|
h('span', [this.$t(menu.fullPath.substring(1).replace(new RegExp('/', 'g'), '.') + '.name')])
|
||||||
|
|||||||
Reference in New Issue
Block a user