vue-split-pane
vue-split-pane copied to clipboard
建议增加max-percent,且只针对paneL,另外需要优化mousemove的边界处理
if (percent > this.minPercent && percent < this.maxPercent) {
this.percent = percent
} else if (percent < this.minPercent) {
this.percent = this.minPercent
} else {
this.percent = this.maxPercent
}
另外,如果pane内有iframe,需要增加蒙板,防止mousemove事件无法触发。