@vixt/vue 0.6.6 → 0.6.8

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.
@@ -3,6 +3,6 @@ import "virtual:uno.css";
3
3
  import * as vue0 from "vue";
4
4
 
5
5
  //#region src/client/entry.d.ts
6
- declare function entry(): Promise<vue0.App<Element>>;
6
+ declare function entry(): vue0.App<Element>;
7
7
  //#endregion
8
8
  export { entry as default };
@@ -7,14 +7,14 @@ import RootComponent from "virtual:vixt:root-component.vue";
7
7
  import { createApp } from "vue";
8
8
 
9
9
  //#region src/client/entry.ts
10
- async function entry() {
10
+ function entry() {
11
11
  const app = createApp(RootComponent);
12
12
  const vixt = createVixtApp({
13
13
  app,
14
14
  appConfig
15
15
  });
16
16
  try {
17
- await applyPlugins(vixt, plugins);
17
+ applyPlugins(vixt, plugins);
18
18
  } catch (err) {
19
19
  console.error(err);
20
20
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vixt/vue",
3
3
  "type": "module",
4
- "version": "0.6.6",
4
+ "version": "0.6.8",
5
5
  "author": "SoulLyoko<https://github.com/SoulLyoko>",
6
6
  "license": "MIT",
7
7
  "homepage": "https://soullyoko.github.io/vixt/",
@@ -38,6 +38,6 @@
38
38
  "vue": "^3.5.26",
39
39
  "vue-router": "^4.6.4",
40
40
  "vue-tsc": "^3.2.1",
41
- "@vixt/core": "0.6.6"
41
+ "@vixt/core": "0.6.8"
42
42
  }
43
43
  }