Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 836 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 836 Bytes

data-grid-vue

Customized Data Grid Vue component using AG Grid with CRUD functions for rapid app development.

Prerequisite

Run data-grid-api

npm start

Project Setup

Run data-grid-vue

npm run dev

To generate new sample for demo:

use [POST] http://localhost:5001/generates/:tablename

where tablename is the filename (e.g. addresses) for your json file to be created in the api data folder:

addresses.json

addresses.template.json

and include your data in the request body:

# sample data
{
    "street": "1234 Street",
    "city": "Alhambra",
    "stateCode": "CA",
    "zipCode": 12345,
    "countyCode": "LA",
    "countryCode": "US",
    "exists": false,
    "incorporated": "1903-07-11"
}

click the brand name (upper left corner) to refresh.

data-grid-vue