The Javascript spreadsheet with Vue
Integrating jspreadsheet with Vue
See a full example on codesandbox
Get a source code of a sample Vue project
Source code
<html> <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.min.js"></script> <script src="https://bossanova.uk/jspreadsheet/v3/jexcel.js"></script> <script src="https://jsuites.net/v3/jsuites.js"></script> <link rel="stylesheet" href="https://bossanova.uk/jspreadsheet/v3/jexcel.css" type="text/css" /> <link rel="stylesheet" href="https://jsuites.net/v3/jsuites.css" type="text/css" /> <div id="spreadsheet"></div> <input type="button" value="Add new row" onclick="vm.insertRow()" /> <script> var options = { data:[[]], minDimensions:[10,10], } var vm = new Vue({ el: '#spreadsheet', mounted: function() { let spreadsheet = jexcel(this.$el, options); Object.assign(this, spreadsheet); } }); </script>