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一个Hack式的解决方案 #17

Open cmdparkour opened 5 years ago

cmdparkour commented 5 years ago

在自己定义好的resize方法中重置percent,this.$(children[0])代表vue-split-pane组件 resize() { if (this.$children[0].percent > 40) { this.$children[0].percent = 40 } }

Things-Z commented 4 years ago

师傅厉害,拿走了,谢谢 :)