You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Change all `.ts` files to `.js`. In a blank Ionic Vue app, this should only be `router/index.ts` and `main.ts`.
51
+
2. Change all `.ts` files to `.js`. In a blank Ionic Vue app, this should only be `src/router/index.ts` and `src/main.ts`.
52
52
53
53
3. Remove `@vue/typescript/recommended` and `@typescript-eslint/no-explicit-any: ‘off’, `from `.eslintrc.js`.
54
54
55
-
4. Remove `Array<RouteRecordRaw>` from `router/index.js`.
55
+
4. Remove `Array<RouteRecordRaw>` from `src/router/index.js`.
56
56
57
-
5. Delete the `shims-vue.d.ts` file.
57
+
5. Delete the `src/shims-vue.d.ts` file.
58
58
59
-
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`.
59
+
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 `src/App.vue` and `src/views/HomePage.vue`.
2. Change all `.ts` files to `.js`. In a blank Ionic Vue app, this should only be `router/index.ts` and `main.ts`.
44
+
2. Change all `.ts` files to `.js`. In a blank Ionic Vue app, this should only be `src/router/index.ts` and `src/main.ts`.
45
45
46
46
3. Remove `@vue/typescript/recommended` and `@typescript-eslint/no-explicit-any: ‘off’, `from `.eslintrc.js`.
47
47
48
-
4. Remove `Array<RouteRecordRaw>` from `router/index.js`.
48
+
4. Remove `Array<RouteRecordRaw>` from `src/router/index.js`.
49
49
50
-
5. Delete the `shims-vue.d.ts` file.
50
+
5. Delete the `src/shims-vue.d.ts` file.
51
51
52
-
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`.
52
+
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 `src/App.vue` and `src/views/HomePage.vue`.
2. Change all `.ts` files to `.js`. In a blank Ionic Vue app, this should only be `router/index.ts` and `main.ts`.
51
+
2. Change all `.ts` files to `.js`. In a blank Ionic Vue app, this should only be `src/router/index.ts` and `src/main.ts`.
52
52
53
53
3. Remove `@vue/typescript/recommended` and `@typescript-eslint/no-explicit-any: ‘off’, `from `.eslintrc.js`.
54
54
55
-
4. Remove `Array<RouteRecordRaw>` from `router/index.js`.
55
+
4. Remove `Array<RouteRecordRaw>` from `src/router/index.js`.
56
56
57
-
5. Delete the `shims-vue.d.ts` file.
57
+
5. Delete the `src/shims-vue.d.ts` file.
58
58
59
-
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`.
59
+
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 `src/App.vue` and `src/views/HomePage.vue`.
60
+
61
+
7. Delete the `tsconfig.json` file.
60
62
61
63
## A look at a Vue Component
62
64
@@ -324,7 +326,7 @@ Let's look at another component from Ionic Framework, FAB. Floating Action Butto
0 commit comments