vue-virtual-table icon indicating copy to clipboard operation
vue-virtual-table copied to clipboard

vue table component of vue2

Results 16 vue-virtual-table issues
Sort by recently updated
recently updated
newest added

maybe need render function ?? like this ``` render: (h, {row}) => { return h('span', {class: 'small-txt'}, `${row.host}:${row.port}`); }, ```

Hi, is it possible to create fixed columns ? eg always keep the user name in view to the left when scrolling a table on X axis ? Thank you

Dates seem to be handled just as strings in this component. Is there any way to at a minimum have the dates formatted. I have my dates coming back from...

I read the source and don't see if multi header has been implemented or I missed something?

Using vue-virtual-table and floating-vue alongside, breaks tooltips as floating-vue and v-tooltip race against each other. The following fix works for me (**but is heavily untested**): ```diff diff --git a/src/vue-virtual-table.vue b/src/vue-virtual-table.vue...