PanJiaChen / vue-split-pane

Split-Pane component built with vue2.0, can be split vertically or horizontally. http://panjiachen.github.io/split-pane/demo/index.html
553 stars 104 forks source link

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

Open cecilpeng opened 6 years ago

cecilpeng commented 6 years ago
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 commented 6 years ago

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