From ad2c4bf63a374ea401d66f56a7f9f13a54b3d7dd Mon Sep 17 00:00:00 2001 From: Shawn Taylor Date: Thu, 23 Mar 2023 10:36:14 -0400 Subject: [PATCH 1/7] docs(quickstart): update to include imports and match current starter app --- versioned_docs/version-v6/vue/quickstart.md | 265 +++++--------------- 1 file changed, 61 insertions(+), 204 deletions(-) diff --git a/versioned_docs/version-v6/vue/quickstart.md b/versioned_docs/version-v6/vue/quickstart.md index de98ac8bc6d..f092266aa72 100644 --- a/versioned_docs/version-v6/vue/quickstart.md +++ b/versioned_docs/version-v6/vue/quickstart.md @@ -56,7 +56,7 @@ npm uninstall --save typescript @types/jest @typescript-eslint/eslint-plugin @ty 5. Delete the `shims-vue.d.ts` file. -6. Remove `lang="ts"` from the `script` tags in any of your Vue components that have them. In a blank Ionic Vue app, this should only be `App.vue` and `views/Home.vue`. +6. Remove `lang="ts"` from the `script` tags in any of your Vue components that have them. In a blank Ionic Vue app, this should only be `App.vue` and `views/HomePage.vue`. ## A look at a Vue Component @@ -91,17 +91,8 @@ If we open `App.vue` we should see the following: - ``` @@ -125,24 +116,15 @@ From there, let's look at the template. All Vue components must have a ` -