vue-datagrid icon indicating copy to clipboard operation
vue-datagrid copied to clipboard

How to add drag or click to resize column?

Open datainvestor opened this issue 4 years ago • 1 comments

So based on codesandbox example, how do I add ability to resize columns by draggin (extending them) or to click on the to autoresize? Here is my codesandbox: https://codesandbox.io/s/distracted-heisenberg-reexb?file=/src/components/Table.vue

datainvestor avatar Sep 22 '21 08:09 datainvestor

add resize="true" in <v-grid>:

<template>
  <v-grid
    theme="compact"
    resize="true"
    :grouping="grouping"
    :source="rows"
    :columns="columns"
    id="vtable"
  ></v-grid>
</template>

zaqxs123456 avatar Dec 09 '21 06:12 zaqxs123456