I'm considering using this component. But first I wanted to understand if in the future you're going to add the ability to resize columns by drag and drop.
Thanks
@bicienzu That's beyond my need and my ability. So, unless someone will work on it, it's not going to happen, sorry.
you can use colresizable :
npm install colresizable --save
<template>
<vuetable
ref="vuetable"
@vuetable:loaded="onLoaded"></vuetable>
</template>
<script>
import 'colresizable/colResizable-1.6.min';
export default {
methods: {
onLoaded() {
$('[ref="vuetable"]').colResizable({
liveDrag: true
});
},
}
}
</script>
works fine with bootstrap tables
Most helpful comment
you can use colresizable :
npm install colresizable --saveworks fine with bootstrap tables