Skip to content

Update/quickstart #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Mar 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions content/docs/en/getting-started/1-quick-start.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Quick Start
contributors: [rigor789, eddyverbruggen]
contributors: [rigor789, eddyverbruggen, damain]
---

If you want to easily try NativeScript-Vue, we strongly recommend trying
Expand All @@ -10,18 +10,18 @@ If you are ready to move on and work locally on your machine, and [you
have your system ready for native development](/en/docs/getting-started/installation), you can start by using a template:

```shell
$ tns create my-app --template nativescript-vue-template
$ cd my-app
$ $ npm install -g @vue/cli @vue/cli-init
$ vue init nativescript-vue/vue-cli-template <project-name>
$ cd <project-name>
$ npm install
```

and then run your app using:

and then run your app using
```shell
$ tns run android # for android
$ npm run watch:<platform>
```
> where platform is `ios` or `android`.

```shell
$ tns run ios # for ios
```
For more details check out [nativescript-vue/vue-cli-template on GitHub](https://github.com/nativescript-vue/vue-cli-template).

To learn more about the available templates head over to the [templates documentation](/en/docs/getting-started/templates).