Gathering detailed insights and metrics for tw-handsontable-vue3
Gathering detailed insights and metrics for tw-handsontable-vue3
Gathering detailed insights and metrics for tw-handsontable-vue3
Gathering detailed insights and metrics for tw-handsontable-vue3
JavaScript Data Grid / Data Table with a Spreadsheet Look & Feel. Works with React, Angular, and Vue. Supported by the Handsontable team ⚡
npm install tw-handsontable-vue3
Typescript
Module System
Node Version
NPM Version
72.6
Supply Chain
91
Quality
74.9
Maintenance
100
Vulnerability
85.6
License
JavaScript (93.28%)
TypeScript (5.05%)
SCSS (1.08%)
CSS (0.37%)
Vue (0.21%)
EJS (0.01%)
Total Downloads
402
Last Day
1
Last Week
5
Last Month
11
Last Year
95
NOASSERTION License
20,981 Stars
8,747 Commits
3,143 Forks
457 Watchers
159 Branches
133 Contributors
Updated on May 09, 2025
Minified
Minified + Gzipped
Latest Version
0.0.2
Package Id
tw-handsontable-vue3@0.0.2
Unpacked Size
395.67 kB
Size
233.81 kB
File Count
31
NPM Version
6.14.13
Node Version
14.17.3
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
25%
5
Compared to previous week
Last Month
0%
11
Compared to previous month
Last Year
33.8%
95
Compared to previous year
2
33
Handsontable's wrapper for Vue 3 combines data grid features with spreadsheet-like UX.
It provides data binding, data validation, filtering, sorting, and CRUD operations.
The most popular features of Handsontable for Vue 3:
✓ Multiple column sorting
✓ Non-contiguous selection
✓ Filtering data
✓ Export to file
✓ Validating data
✓ Conditional formatting
✓ Merging cells
✓ Freezing rows/columns
✓ Moving rows/columns
✓ Resizing rows/columns
✓ Hiding rows/columns
✓ Context menu
✓ Comments
Run the following command in your terminal
npm install handsontable @handsontable/vue3
You can load it directly from jsDelivr as well.
1<script src="https://cdn.jsdelivr.net/npm/handsontable/dist/handsontable.full.min.js"></script> 2<script src="https://cdn.jsdelivr.net/npm/@handsontable/vue3/dist/vue-handsontable.min.js"></script> 3 4<link href="https://cdn.jsdelivr.net/npm/handsontable/dist/handsontable.full.min.css" rel="stylesheet">
The component will be available as Handsontable.vue.HotTable
.
Use this data grid as you would any other component in your application. Options can be set as HotTable
props.
Styles
1@import '~handsontable/dist/handsontable.full.css';
Vue 3 Component
1<template> 2 <hot-table :data="data" :rowHeaders="true" :colHeaders="true"></hot-table> 3</template> 4 5<script> 6 import { defineComponent } from 'vue'; 7 import { HotTable } from '@handsontable/vue3'; 8 import { registerAllModules } from 'handsontable/registry'; 9 10 // register Handsontable's modules 11 registerAllModules(); 12 13 export default defineComponent({ 14 data() { 15 return { 16 data: [ 17 ['', 'Ford', 'Volvo', 'Toyota', 'Honda'], 18 ['2016', 10, 11, 12, 13], 19 ['2017', 20, 11, 14, 13], 20 ['2018', 30, 15, 12, 13] 21 ], 22 }; 23 }, 24 components: { 25 HotTable, 26 } 27 }); 28</script> 29 30<style src="handsontable/dist/handsontable.full.css"></style>
We provide support for developers working with commercial version via contact form or at support@handsontable.com.
If you use a non-commercial version then please ask your tagged question on StackOverflow.
Handsontable is a commercial software with two licenses available:
If you use Handsontable for Vue 3 in a project that supports your commercial activity, then you must purchase the license key at handsontable.com.
If you use the free for non-commercial license of Handsontable, then pass the phrase 'non-commercial-and-evaluation'
, as described in this documentation.
Proudly created and maintained by the Handsontable Team.
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
packaging workflow detected
Details
Reason
SAST tool is run on all commits
Details
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
Found 22/29 approved changesets -- score normalized to 7
Reason
badge detected: InProgress
Reason
dangerous workflow patterns detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
72 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-05-05
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More