iview -- vue modal 显示到最顶层 层级

给想要显示到顶层的modal 设置class属性

.my-modal-parent {
  position: fixed;  // 浮动
  z-index: 999999;
}
原文地址:https://www.cnblogs.com/mafeng/p/10885471.html