vue-split-pane
vue-split-pane copied to clipboard
关于max-percent一个Hack式的解决方案
在自己定义好的resize方法中重置percent,this.$(children[0])代表vue-split-pane组件
resize() { if (this.$children[0].percent > 40) { this.$children[0].percent = 40 } }
师傅厉害,拿走了,谢谢 :)