tera-generictable
v0.4.1
Published
Generic Table for Tera
Readme
generictable
Project setup
npm installCompiles and hot-reloads for development
npm run serveCompiles and minifies for production
npm run buildLints and fixes files
npm run lintTo import and use the tera-generictable library in your Vue application:
import { createApp } from "vue"; import GenerateTable from "tera-generictable/src/index"; import App from "./App.vue";
const app = createApp(App); app.use(GenerateTable); app.mount("#app");
