
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
@handsontable/vue
Advanced tools
Handsontable's wrapper for Vue 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:
Β Β βΒ 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/vue
You can load it directly from jsDelivr as well.
<script src="https://cdn.jsdelivr.net/npm/handsontable/dist/handsontable.full.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@handsontable/vue/dist/vue-handsontable.min.js"></script>
<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
@import '~handsontable/dist/handsontable.full.css';
Vue Component
<template>
<hot-table :data="data" colHeaders="true" rowHeaders="true" width="600" height="300"></hot-table>
</template>
<script>
import { HotTable } from '@handsontable/vue';
export default {
data: function() {
return {
data: [
['', 'Tesla', 'Mercedes', 'Toyota', 'Volvo'],
['2019', 10, 11, 12, 13],
['2020', 20, 11, 14, 13],
['2021', 30, 15, 12, 13]
],
};
},
components: {
HotTable
}
}
</script>
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 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.
[11.1.0] - 2022-01-13
updateData()
, a new method that allows for replacing Handsontable's data
without
resetting the states of cells, rows and columns.
#7263setDataAtCell()
method.
#8601autocomplete
editor's suggestion list didn't update properly.
#7570data
wasn't defined.
#8589CollapsibleColumns
plugin's expandAll()
method didn't expand
collapsed columns. #8900valueAccordingPercent()
helper.
#9006NestedRows
plugin could throw a type error after calling the
updateSettings()
method. #9018MultiColumnSorting
plugin's sort()
method.
#9067Comments
plugin's editor disappeared after adding a comment.
#9075
#6661For more information on Handsontable 11.1.0, see:
FAQs
Best Data Grid for Vue with Spreadsheet Look and Feel.
The npm package @handsontable/vue receives a total of 6,873 weekly downloads. As such, @handsontable/vue popularity was classified as popular.
We found that @handsontable/vue demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fixβa new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.