diff --git a/content/docs/en/getting-started/1-quick-start.md b/content/docs/en/getting-started/1-quick-start.md index 41122d86..1fe39a9c 100644 --- a/content/docs/en/getting-started/1-quick-start.md +++ b/content/docs/en/getting-started/1-quick-start.md @@ -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 @@ -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 +$ cd +$ npm install ``` -and then run your app using: - +and then run your app using ```shell -$ tns run android # for android +$ npm run watch: ``` +> 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).