1.1.0 • Published 2 years ago
vtbl v1.1.0
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: