https://github.com/sebbaum/phonegap-vue
A phonegap vuejs 2 setup to start with
https://github.com/sebbaum/phonegap-vue
Last synced: over 1 year ago
JSON representation
A phonegap vuejs 2 setup to start with
- Host: GitHub
- URL: https://github.com/sebbaum/phonegap-vue
- Owner: sebbaum
- Created: 2017-06-11T12:51:31.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-16T07:44:38.000Z (almost 9 years ago)
- Last Synced: 2025-01-10T04:49:40.620Z (over 1 year ago)
- Language: JavaScript
- Size: 79.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Setup
Description on how this kickstarter was setup.
## Install and craft phonegap
1. Install phonegap: `npm install -g phonegap`
1. Create new phonegap project: `phonegap create kickstarter`
1. Test it: `phonegap run browser`
This should show phonegap's default page.
## Adding npm
1. Adding package.json: `npm init`
1. Adding serve script for phonegap. Now we can start the app simply by running: `npm run serve`
```
"scripts": {
"serve": "phonegap serve --port 8888",
...
```
## Adding vuejs and required components
1. `npm install vue --save`
1. `npm install vue-router --save`
# Usage
# References
* [Phonegap](https://phonegap.com/)
* [NPM](https://www.npmjs.com/)