https://github.com/robertoprevato/dataentry-vue.js
Example of integration of DataEntry library with Vue.js
https://github.com/robertoprevato/dataentry-vue.js
Last synced: 6 months ago
JSON representation
Example of integration of DataEntry library with Vue.js
- Host: GitHub
- URL: https://github.com/robertoprevato/dataentry-vue.js
- Owner: RobertoPrevato
- Created: 2018-01-01T18:52:55.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T12:01:26.000Z (almost 8 years ago)
- Last Synced: 2024-11-24T20:46:28.955Z (11 months ago)
- Language: Vue
- Size: 106 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DataEntry-Vue.js
This repository contains a demo application used to showcase integration of [DataEntry forms validation library](https://github.com/RobertoPrevato/DataEntry) with [Vue.js](https://vuejs.org).
It also contains a project template for Vue.js applications using Browserify and Gulp, alternative to official templates.The demo can be seen here: [https://robertoprevato.github.io/demos/dataentry-vuejs/index.html](https://robertoprevato.github.io/demos/dataentry-vuejs/index.html).
## Getting started
Commands to setup development environment:
```js
npm installgulp dev-init
gulp watch-es
gulp watch-less
```Artifacts are generated in a folder `httpdocs`. During development, `gulp watch-es` and `gulp watch-less` can be used to setup watchers that automatically build artifacts upon file change.
### Visiting the demo application
The code of the Vue.js demo application does not require a running web server in order to be used.
It is possible to open and test the demo application by opening the index.html inside the `httpdocs` directly in a browser.
However, it is recommended to work with a web server, to use a more realistic development environment.The author's recommended way to quickly use a development web server, is to use the Python HttpServer module (requires Python 3 installed):
* `py -3 -m http.server 44660` (under Windows)
* `python3 -m http.server 44660` (under Linux)
Or, using Python 2.x:
* `py -2 -m SimpleHTTPServer 44660` (under Windows)
* `python -m SimpleHTTPServer 44660` (under Linux)## Documentation
Detailed documentation for DataEntry library is available at the [wiki page](https://github.com/RobertoPrevato/DataEntry/wiki).