vue Sortable.js antd怎么增加表格拖拽的高度 不只是小范围拖拽
时间: 2024-04-10 17:26:58
浏览: 27
如果你使用Vue Sortable.js和Ant Design (antd)来实现表格拖拽,并且想要增加整个表格的拖拽高度,可以按照以下[步骤]([http](https://geek.csdn.net/educolumn/68f28ca3131d47699e5902c5d3d74d51?spm=1055.2569.3001.10083)s://geek.csdn.net/educolumn/41e918968ef7840279c31b7f6a0950e3?spm=1055.2569.3001.10083)进行操作:
1. 使用CSS[样式](https://geek.csdn.net/educolumn/24a10ad6a5bc75b9f6c92ee7d63d8e8b?spm=1055.2569.3001.10083)设置高度:为包含表格的[容器](https://geek.csdn.net/educolumn/54d6cfaab192ff44870765a794c9cc10?spm=1055.2569.3001.10083)元素[添加](https://geek.csdn.net/educolumn/4d4bec229f163522438e69abc8681710?spm=1055.2569.3001.10083)一个自定义的class或id,并在CSS文件中设置该class或id的高度。
```html
<template>
<div class="custom-container">
<table>
<!-- 表格内容 -->
</table>
</template>
<style>
.custom-container {
height: 400px; /* 设置你想要的高度 */
</style>
```