Basic example

优质
小牛编辑
120浏览
2023-12-01

A simple implementation of the @handsontable/vue component.

import Vue from 'vue'; import { HotTable } from '@handsontable/vue'; import Handsontable from 'handsontable'; new Vue({ el: '#example1', data: function() { return { hotSettings: { data: Handsontable.helper.createSpreadsheetData(6, 10), colHeaders: true } } }, components: { HotTable } });

Edit this page