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.
- Host: GitHub
- URL: https://github.com/bobbylight/vuetify-modifiable-table
- Owner: bobbylight
- Created: 2019-11-16T20:03:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T11:50:44.000Z (over 3 years ago)
- Last Synced: 2026-02-14T05:22:14.102Z (5 months ago)
- Language: Vue
- Size: 1.08 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
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';
```