@citruslime/create-boilerplate 1.1.1 → 1.1.2-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@citruslime/create-boilerplate",
3
3
  "type": "module",
4
- "version": "1.1.1",
4
+ "version": "1.1.2-beta.1",
5
5
  "author": {
6
6
  "name": "Citrus-Lime Ltd",
7
7
  "url": "https://citruslime.com"
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "kolorist": "^1.7.0",
31
- "minimist": "^1.2.7",
31
+ "minimist": "^1.2.8",
32
32
  "prompts": "^2.4.2"
33
33
  }
34
34
  }
@@ -14,6 +14,8 @@ dist-ssr
14
14
 
15
15
  .vscode/*
16
16
  !.vscode/*.code-workspace
17
+ !.vscode/settings.json
18
+ !.vscode/extensions.json
17
19
  .idea
18
20
  *.suo
19
21
  *.ntvs*
@@ -24,6 +24,13 @@ body {
24
24
  <cl-ui-navigation />
25
25
  </template>
26
26
 
27
- <router-view :key="route.fullPath" />
27
+ <router-view v-slot="{ Component }"
28
+ :key="route.fullPath">
29
+ <template v-if="Component">
30
+ <suspense>
31
+ <component :is="Component" />
32
+ </suspense>
33
+ </template>
34
+ </router-view>
28
35
  </cl-ui-app>
29
36
  </template>