vue-split-pane icon indicating copy to clipboard operation
vue-split-pane copied to clipboard

建议增加max-percent,且只针对paneL,另外需要优化mousemove的边界处理

Open cecilpeng opened this issue 6 years ago • 1 comments

if (percent > this.minPercent && percent < this.maxPercent) {
    this.percent = percent
} else if (percent < this.minPercent) {
    this.percent = this.minPercent
} else {
    this.percent = this.maxPercent
}

cecilpeng avatar Mar 25 '18 11:03 cecilpeng

另外,如果pane内有iframe,需要增加蒙板,防止mousemove事件无法触发。

cecilpeng avatar Mar 25 '18 11:03 cecilpeng