An open API service indexing awesome lists of open source software.

https://github.com/bobbylight/vuetify-modifiable-table

A table to view and edit a list of objects.
https://github.com/bobbylight/vuetify-modifiable-table

Last synced: 5 months ago
JSON representation

A table to view and edit a list of objects.

Awesome Lists containing this project

README

          

# vuetify-modifiable-table
A table control that lets the user edit a collection of arbitrary
objects.

I had this control in an old thick client I had written long time
ago, so I decided it would be a good learning project to "port" it
to vue. It's still pretty bare-bones but I might flesh it out
some if I use it in some apps.

## Dependencies
This component is a Vue component, and requires Vuetify.

## Useful commands
```
npm install # Download dependencies
npm run serve # Compiles and hot-reloads localhost:8080 for development
npm run build # Builds UMD and commonjs modules for this project
npm run test # Runs unit tests
```

## Using in an application
Use this like any other `Vuetify` component.

```javascript
import ModifiableTable from 'vuetify-modifiable-table';
```