vtbl
v1.1.0
Published
Unleashing Dynamic Tables in Vue 3.
Downloads
7
Readme
VTable
Unleashing Dynamic Tables in Vue 3.
Installation
npm i vtbl
Get Started
<script setup lang="ts">
import { ref } from 'vue';
import VTable from 'vtbl';
import 'vtbl/style.css'; // Optional
const items = ref([]);
</script>
<template>
<VTable :items="items" />
</template>
Documentation
Check out the documentation here:
https://vtbl.pages.dev