
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
@handsontable-pro/vue
Advanced tools
:warning: This package is deprecated.
Handsontable Pro for Vue is now available as @handsontable/vue
.
Handsontable Pro for Vue is the official wrapper for Handsontable Pro, a commercial 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-pro @handsontable-pro/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-pro/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-pro/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 Pro, but it shouldn't limit you in any way:
Some of the most popular features include:
After you buy the license for Handsontable Pro, you should receive a license key of your copy of the software. It will be available in your account at my.handsontable.com.
Paste your license key to the configuration section, just like in the example below.
const settings = {
data: data,
rowHeaders: true,
colHeaders: true,
licenseKey: '00000-00000-00000-00000-00000'
};
Note that the license key is passed as a string so you need to wrap it in quotes ('').
If you have a valid license of Handsontable Pro then your primary contact is through support team at support@handsontable.com
You can also report your issues here on GitHub.
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 but under the hood it uses Handsontable Pro, which is a commercial and paid software. You need to purchase a license in order to use it in production environment.
Copyrights belong to Handsoncode sp. z o.o.
FAQs
Best Data Grid for Vue with Spreadsheet Look and Feel.
The npm package @handsontable-pro/vue receives a total of 34 weekly downloads. As such, @handsontable-pro/vue popularity was classified as not popular.
We found that @handsontable-pro/vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.