vue-columns-resizable-vuetify

1.0.3 • Public • Published

vue-columns-resizable-vuetify

Version Downloads License

Project based

https://github.com/Fuxy526/vue-columns-resizable https://www.npmjs.com/package/vue-columns-resizable

And using Pull Request from https://github.com/onmotion/vue-columns-resizable

Changes

Allow use on top elements (Vuetify use)

Setup

Vue directive for making table columns resizable.

demo

Install

npm install vue-columns-resizable-vuetify --save

Usage

main.js

import VueColumnsResizableVuetify from './plugins/vue-columns-resizable-vuetify';
 
Vue.use(VueColumnsResizableVuetify);

*.vue

<table border="1" class="table" v-columns-resizable>
  <thead>
    <tr>
      <th width="50%">name</th>
      <th width="25%">age</th>
      <th width="25%">gender</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>John</td>
      <td>20</td>
      <td>male</td>
    </tr>
    <tr>
      <td>Emma</td>
      <td>18</td>
      <td>female</td>
    </tr>
    <tr>
      <td>Peter</td>
      <td>21</td>
      <td>male</td>
    </tr>
  </tbody>
</table>

Resize on thead

<table border="1" class="table">
  <thead v-columns-resizable>
    <tr>
      <th width="50%">name</th>
      <th width="25%">age</th>
      <th width="25%">gender</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>John</td>
      <td>20</td>
      <td>male</td>
    </tr>
    <tr>
      <td>Emma</td>
      <td>18</td>
      <td>female</td>
    </tr>
    <tr>
      <td>Peter</td>
      <td>21</td>
      <td>male</td>
    </tr>
  </tbody>
</table>

Resize on v-data-table (Using Vuetify ^2.0)

<v-data-table
    ref="table"
    v-model="selected"
    v-columns-resizable
>
    <template v-slot:items="{ props }"> //It is not necessary to use template at all
    </template>
</v-data-table>

Changelog

  • 1.0.1 - Allow use on top elements (Vuetify use)
  • 0.0.1 - Resize on columns & Resize on thead

Dependents (0)

Package Sidebar

Install

npm i vue-columns-resizable-vuetify

Weekly Downloads

376

Version

1.0.3

License

MIT

Unpacked Size

302 kB

Total Files

13

Last publish

Collaborators

  • kreyco