![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
vue-handsontable-official
Advanced tools
A Vue.js wrapper for the the Handsontable spreadsheet component.
For detailed installation instructions, please take a look at our wiki under "Installation guide".
vue-handsontable-official
creates a <HotTable>
component. You can use it just like any other Vue component. For example:
<template>
<div id="hot-preview">
<HotTable :root="root" :settings="hotSettings"></HotTable>
</div>
</template>
<script>
import moment from 'moment';
import numbro from 'numbro';
import pikaday from 'pikaday';
import Zeroclipboard from 'zeroclipboard';
import Handsontable from 'handsontable';
import HotTable from 'vue-handsontable-official';
import Vue from 'vue';
export default {
data: function() {
return {
root: 'test-hot',
hotSettings: {
data: Handsontable.helper.createSpreadsheetData(40, 40),
colHeaders: true
}
};
},
components: {
HotTable
}
}
</script>
<style>
#test-hot {
width: 600px;
height: 400px;
overflow: hidden;
}
</style>
Note, that you can pass options to Handsontable either as:
<HotTable root="hot-example" :data="hotData" :rowHeaders="true"/>
settings
property<HotTable root="hot-example" :settings="settingsObject" />
The root
property declares the id
of the root element for the table. It is optional - if it isn't provided, the table will get a randomly generated id
.
Please see the /demo directory for a sample app using vue-handsontable-official
.
You can check out a live version of this example at handsontable.github.io/vue-handsontable-official/demo.
vue-handsontable-official
is released under the MIT license.
Copyrights belong to Handsoncode sp. z o.o.
Feel free to give us feedback on this wrapper using this contact form or write directly at hello@handsontable.com.
Handsontable comes with more wrappers and directives for popular frameworks:
FAQs
A Vue.js Handsontable wrapper component.
The npm package vue-handsontable-official receives a total of 17 weekly downloads. As such, vue-handsontable-official popularity was classified as not popular.
We found that vue-handsontable-official demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.