当前位置: 代码迷 >> 综合 >> elementui 导航菜单 嵌入组件时 鼠标移出弹窗之外,有时候弹窗没有关闭?
  详细解决方案

elementui 导航菜单 嵌入组件时 鼠标移出弹窗之外,有时候弹窗没有关闭?

热度:72   发布时间:2023-12-12 15:58:01.0

        

        

data() {

        inhistorypanel:false,           // 增加一个变量用来判断鼠标是否在面板内

}

chkIn() {

        this.inhistorypanel = true;

},

chkOut(){

        this.inhistorypanel = false;

        setTimeout(()=>{

                if(!this.inhistorypanel) this.closeHistory();

        },10)

},

openPanel() {

        this.isHistoryShow = true;

},

closePanel() {

        setTimeout(()=>{

                if(!this.inhistorypanel) this.isHistoryShow = false;

        },10)

},

当鼠标移出菜单栏时 增加一个变量用来判断当前鼠标如果在弹框之后就不关闭弹框 如果不在就关闭弹框。

  相关解决方案