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

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

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/)