This page covers a non-latest version of Handsontable.
# Custom context menu in Vue 2
# Overview
The following example implements the @handsontable/vue
component, adding a custom Context Menu.
# Example
import Vue from 'vue';
import { HotTable } from '@handsontable/vue';
import Handsontable from 'handsontable';
new Vue({
el: '#example1',
data() {
return {
hotSettings: {
data: Handsontable.helper.createSpreadsheetData(5, 5),
colHeaders: true,
contextMenu: {
items: {
'row_above': {
name: 'Insert row above this one (custom name)'
},
'row_below': {},
'separator': Handsontable.plugins.ContextMenu.SEPARATOR,
'clear_custom': {
name: 'Clear all cells (custom)',
callback() {
this.clear();
}
}
}
},
height: 'auto',
licenseKey: 'non-commercial-and-evaluation'
}
}
},
components: {
HotTable
}
});