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.
jacksontable-vue
Advanced tools
Handsontable Community Edition for Vue is the official wrapper for Handsontable Community Edition, an open source data grid component with a spreadsheet look & feel. It easily integrates with any data source and comes with lots of useful features like data binding, validation, sorting or powerful context menu.
Use npm to download the project.
npm install handsontable @handsontable/vue
Assuming that you have installed the wrapper with npm, now you just need to include Handsontable styles into your build system and use <HotTable>
just like any other Vue component.
Vue Component
<template>
<hot-table :settings="settings"></hot-table>
</template>
<script>
import { HotTable } from '@handsontable/vue';
export default {
data: function() {
return {
settings: {
data: [
["", "Ford", "Volvo", "Toyota", "Honda"],
["2016", 10, 11, 12, 13],
["2017", 20, 11, 14, 13],
["2018", 30, 15, 12, 13]
],
colHeaders: true,
rowHeaders: true,
}
};
},
components: {
HotTable
}
}
</script>
<style src="../node_modules/handsontable/dist/handsontable.full.css"></style>
Visit docs.handsontable.com to get more Handsontable for Vue examples and guides.
The list below gives a rough idea on what you can do with Handsontable, but it shouldn't limit you in any way:
Some of the most popular features include:
You can report your issues here on GitHub.
An open source version of Handsontable doesn't include technical support. You need to purchase the Handsontable Pro license or contact us directly in order to obtain a technical support from the Handsontable team.
If you would like to help us to develop this wrapper for Vue, please read the guide for contributors first.
This wrapper is released under the MIT license.
Copyrights belong to Handsoncode sp. z o.o.
FAQs
Vue.js wrapper for Jacksontable, the OSS fork of Hansontable
The npm package jacksontable-vue receives a total of 1 weekly downloads. As such, jacksontable-vue popularity was classified as not popular.
We found that jacksontable-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.