Skip to content
joffrey edited this page Nov 13, 2018 · 4 revisions

Spreadsheet Vue.js

Project setup

Install with your favorite package manager

yarn add spreadsheet-vuejs

npm i spreadsheet-vuejs

Import TableVue on your javascript file

import VueTable from 'spreadsheet-vuejs'

Call component in your file

  <vue-table
    :data="Array"
    :headers="Array"
    :drag-to-fill="Boolean"
    :submenu-tbody="Array"
    :submenu-thead="Array"
    v-on:thead-submenu-click-customize-function="Function"
    v-on:tbody-submenu-click-customize-function="Function"
    v-on:tbody-input-change="Function"
    v-on:tbody-select-change="Function">
  </vue-table>
Clone this wiki locally