elementui 三级菜单可能在IE浏览器无法点开的问题

版权声明:转发请标明出处 https://blog.csdn.net/hailangtuteng/article/details/81165299

刚刚动态渲染三级菜单后 出现了三级菜单在IE下无法点击的问题 从github上面拉了很多代码 都有这样的问题

于是通过排查 发现是elementUI面包屑的原因导致 在IE下无法点击

通过改造elementUI面包屑代码

<el-col :span="18" class="breadcrumb-container">

            <el-breadcrumb separator="/" class="breadcrumb-inner">

              <el-breadcrumb-item v-for="item in $route.matched" :key="item.path" style="font-size:14px;color:white" >

                {{ item.name }}

              </el-breadcrumb-item>

            </el-breadcrumb>

          </el-col>

兼容问题就解决了

猜你喜欢

转载自blog.csdn.net/hailangtuteng/article/details/81165299