vue 中使用分割面板 vxe-split 来实现支持拖拽功能
官网:https://vxeui.com
github:https://github.com/x-extends/vxe-pc-ui
gitee:https://github.com/x-extends/vxe-pc-ui
<template>
<div>
<vxe-split height="300" border>
<vxe-split-pane>
<div style="height: 100%;background-color: #d8d8f9;">左侧</div>
</vxe-split-pane>
<vxe-split-pane>
<vxe-split border vertical>
<vxe-split-pane>
<div style="height: 100%;background-color: #f3e1e1;">顶部</div>
</vxe-split-pane>
<vxe-split-pane>
<div style="height: 100%;background-color: #e2f9d8;">中</div>
</vxe-split-pane>
<vxe-split-pane>
<div style="height: 100%;background-color: #d8d8f9;">底部</div>
</vxe-split-pane>
</vxe-split>
</vxe-split-pane>
</vxe-split>
</div>
</template>