GitHub - Happy-Coding-Clans/vue-easytable: A powerful data table based on vuejs. You can use it as data grid、Microsoft Excel or Google sheets. It supports virtual scroll、cell edit etc. (original) (raw)
Support this project by becoming a sponsor. Your logo or name will show up here with a link you provided. Become a sponsor
A powerful data table based on vue2.x You can use it as data grid、Microsoft Excel or Google sheets. It supports virtual scroll、cell edit etc.
npm install vue-easytable
import Vue from "vue"; import "vue-easytable/libs/theme-default/index.css"; import VueEasytable from "vue-easytable";
Vue.use(VueEasytable);
new Vue({ el: "#app", render: (h) => h(App), });