@vixt/vue 0.2.0 → 0.2.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/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -238,7 +238,7 @@ const presetVue = defineVixtModule({
|
|
|
238
238
|
if (overrides.size <= 1)
|
|
239
239
|
return;
|
|
240
240
|
for (const pageDir of pages) {
|
|
241
|
-
const matched = overrides.keys().find((e) => e.match(pageDir));
|
|
241
|
+
const matched = [...overrides.keys()].find((e) => e.match(pageDir));
|
|
242
242
|
if (matched) {
|
|
243
243
|
node.components.set("default", matched);
|
|
244
244
|
return;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vixt/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.1",
|
|
5
5
|
"author": "SoulLyoko<https://github.com/SoulLyoko>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/SoulLyoko/vixt#readme",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"vite-plugin-vue-layouts": "^0.11.0",
|
|
33
33
|
"vue": "^3.5.13",
|
|
34
34
|
"vue-router": "^4.5.0",
|
|
35
|
-
"@vixt/core": "0.2.
|
|
35
|
+
"@vixt/core": "0.2.1"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "unbuild"
|