问题:

elmentui版本2.15.6

el-cascader控件不断进行搜索,选择,删除,大概30多次后,界面卡死崩溃

解决方案

.el-cascader-node 元素生成后移除aria-owns属性

在options加载完成后添加代码:

this.$nextTick(() => {
     // 添加这段代码
      const $el = document.querySelectorAll('.el-cascader-panel .el-cascader-node[aria-owns]');
      Array.from($el).map((item) => item.removeAttribute('aria-owns'));
});

Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐