研发图纸文件管理系统-前端项目
fix: the problem that side menu not work in IE; :bug:
修复:IE 浏览器下侧边栏不能正常工作的bug;
1个文件已修改
2 ■■■ 已修改文件
src/components/menu/menu.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/menu/menu.js
@@ -112,7 +112,7 @@
      return h(
        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'),
              h('span', [this.$t(menu.fullPath.substring(1).replace(new RegExp('/', 'g'), '.') + '.name')])