Skip to content

Commit

Permalink
Adding dependancies and functionality for table export
Browse files Browse the repository at this point in the history
Signed-off-by: Nicholas Castelli <nick.v.castelli@gmail.com>
  • Loading branch information
nvcastelli committed Jun 14, 2023
1 parent fa90a76 commit a6ff655
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/plugins/table.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
import 'file-saver/dist/FileSaver.min.js'
import 'tableexport.jquery.plugin/libs/js-xlsx/xlsx.core.min.js'
import 'bootstrap-table/dist/bootstrap-table.min.css'

import './jquery.js'
import Vue from 'vue'
import 'bootstrap'
import 'jquery-treegrid/js/jquery.treegrid.min.js'
import 'tableexport.jquery.plugin/tableExport.min.js'
import 'bootstrap-table/dist/bootstrap-table.js'
import 'bootstrap-table/dist/extensions/treegrid/bootstrap-table-treegrid.min.js'
import 'bootstrap-table/dist/extensions/export/bootstrap-table-export.js'
import BootstrapTable from 'bootstrap-table/dist/bootstrap-table-vue.esm.js'


Vue.component('BootstrapTable', BootstrapTable);

0 comments on commit a6ff655

Please sign in to comment.