vue-editable-table
Version:
An editable table component for Vue with Tailwind CSS
32 lines (22 loc) • 512 B
Markdown
# Vue Editable Table
An editable table component for Vue 3 with Tailwind CSS styling.
## Installation
```bash
npm install vue-editable-table
```
## Usage
```vue
<script setup>
import EditableTable from 'vue-editable-table'
</script>
<template>
<EditableTable :data="tableData" :columns="columns" />
</template>
```
## Props
| Prop | Type | Description |
|------|------|-------------|
| data | Array | Table data |
| columns | Array | Column definitions |
## License
MIT