赞
踩
// 安装 vue2 的话去掉@next
npm i splitpanes@next
// horizontal 控制 纵向还是横向 // resize resized 一个是进入页面触发,一个是拉伸的时候触发 <Splitpanes horizontal style="height: calc(100vh - 122px);width: calc(100% - 18px);" @resize="" @resized="" > // 需要多个可以嵌套 <Pane class="pane-left"> </Pane> <Pane class="pane-right"> </Pane> </Splitpanes> <scrupt lang="ts"> import { Splitpanes, Pane } from 'splitpanes' import 'splitpanes/dist/splitpanes.css' import { defineComponent } from 'vue' export default defineComponent({ components:{ Splitpanes,Pane } }) </script> // 详细参考 https://antoniandre.github.io/splitpanes/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。