欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vxe-table 實(shí)現(xiàn)行高拖拽功能示例詳解

 更新時(shí)間:2025年01月21日 09:28:59   作者:可不簡(jiǎn)單  
vxe-table實(shí)現(xiàn)行高拖拽功能,需更新到最新版本,通過row-config.resizable和row-resize啟用,多列允許觸發(fā)行高拖拽時(shí),通過row-resize指定任意列,感興趣的朋友跟隨小編一起看看吧

vxe-table 實(shí)現(xiàn)行高拖拽功能,需要注意更新到最新版本才支持該功能

官網(wǎng):https://vxetable.cn

通過 row-config.resizable 和 row-resize 啟用行高拖拽功能;
當(dāng)需要多列允許觸發(fā)行高拖拽時(shí),通過 row-resize 指定任意列

<template>
  <div>
    <vxe-grid v-bind="gridOptions"></vxe-grid>
  </div>
</template>
<script>
export default {
  data () {
    const gridOptions = {
      border: true,
      rowConfig: {
        resizable: true
      },
      columns: [
        { type: 'seq', width: 70, rowResize: true },
        { field: 'name', title: 'Name' },
        { field: 'sex', title: 'Sex' },
        { field: 'age', title: 'Age' },
        { field: 'time', title: 'Time' },
        { field: 'address', title: 'Address' }
      ],
      data: [
        { id: 10001, name: 'Test1', role: 'Develop', sex: 'Man', age: 28, address: 'test abc' },
        { id: 10002, name: 'Test2', role: 'Test', sex: 'Women', age: 22, address: 'Guangzhou' },
        { id: 10003, name: 'Test3', role: 'PM', sex: 'Man', age: 32, address: 'Shanghai' },
        { id: 10004, name: 'Test4', role: 'Designer', sex: 'Women', age: 24, address: 'Shanghai' }
      ]
    }
    return {
      gridOptions
    }
  }
}
</script>

https://gitee.com/x-extends/vxe-table

到此這篇關(guān)于vxe-table 實(shí)現(xiàn)行高拖拽功能示例詳解的文章就介紹到這了,更多相關(guān)vxe-table 行高拖拽內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評(píng)論