@unhead/vue 1.1.25 → 1.1.27
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.cjs +67 -27
- package/dist/index.d.ts +24 -24
- package/dist/index.mjs +68 -28
- package/dist/polyfill.cjs +1 -1
- package/dist/polyfill.mjs +1 -1
- package/dist/shared/{vue.bc44c3fa.mjs → vue.505b826e.mjs} +2 -2
- package/dist/shared/{vue.627f8ea8.cjs → vue.a57702be.cjs} +2 -2
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const unhead = require('unhead');
|
|
4
|
-
const useHead = require('./shared/vue.
|
|
4
|
+
const useHead = require('./shared/vue.a57702be.cjs');
|
|
5
5
|
const vue = require('vue');
|
|
6
6
|
const shared = require('@unhead/shared');
|
|
7
7
|
|
|
@@ -42,7 +42,7 @@ function useHeadSafe(input, options = {}) {
|
|
|
42
42
|
return useHead.useHead(input, { ...options, transform: unhead.whitelistSafeInput });
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
function useSeoMeta(input, options) {
|
|
46
46
|
const headInput = vue.ref({});
|
|
47
47
|
vue.watchEffect(() => {
|
|
48
48
|
const resolvedMeta = useHead.resolveUnrefHeadInput(input);
|
|
@@ -54,7 +54,7 @@ const useSeoMeta = (input, options) => {
|
|
|
54
54
|
};
|
|
55
55
|
});
|
|
56
56
|
return useHead.useHead(headInput, options);
|
|
57
|
-
}
|
|
57
|
+
}
|
|
58
58
|
|
|
59
59
|
function useServerHead(input, options = {}) {
|
|
60
60
|
return useHead.serverUseHead(input, { ...options, mode: "server" });
|
|
@@ -68,40 +68,80 @@ function useServerSeoMeta(input, options) {
|
|
|
68
68
|
return useSeoMeta(input, { ...options || {}, mode: "server" });
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
function useTagTitle(title) {
|
|
72
|
+
return useHead.useHead({ title });
|
|
73
|
+
}
|
|
74
|
+
function useTitleTemplate(titleTemplate) {
|
|
75
|
+
return useHead.useHead({ titleTemplate });
|
|
76
|
+
}
|
|
77
|
+
function useTagMeta(meta) {
|
|
78
|
+
return useHead.useHead({ meta: shared.asArray(meta) });
|
|
79
|
+
}
|
|
80
|
+
function useTagMetaFlat(meta) {
|
|
75
81
|
const input = vue.ref({});
|
|
76
82
|
vue.watchEffect(() => {
|
|
77
83
|
input.value = unhead.unpackMeta(useHead.resolveUnrefHeadInput(meta));
|
|
78
84
|
});
|
|
79
85
|
return useHead.useHead({ meta: input });
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
86
|
+
}
|
|
87
|
+
function useTagLink(link) {
|
|
88
|
+
return useHead.useHead({ link: shared.asArray(link) });
|
|
89
|
+
}
|
|
90
|
+
function useTagScript(script) {
|
|
91
|
+
return useHead.useHead({ script: shared.asArray(script) });
|
|
92
|
+
}
|
|
93
|
+
function useTagStyle(style) {
|
|
94
|
+
return useHead.useHead({ style: shared.asArray(style) });
|
|
95
|
+
}
|
|
96
|
+
function useTagNoscript(noscript) {
|
|
97
|
+
return useHead.useHead({ noscript: shared.asArray(noscript) });
|
|
98
|
+
}
|
|
99
|
+
function useTagBase(base) {
|
|
100
|
+
return useHead.useHead({ base });
|
|
101
|
+
}
|
|
102
|
+
function useHtmlAttrs(attrs) {
|
|
103
|
+
return useHead.useHead({ htmlAttrs: attrs });
|
|
104
|
+
}
|
|
105
|
+
function useBodyAttrs(attrs) {
|
|
106
|
+
return useHead.useHead({ bodyAttrs: attrs });
|
|
107
|
+
}
|
|
108
|
+
function useServerTagTitle(title) {
|
|
109
|
+
return useServerHead({ title });
|
|
110
|
+
}
|
|
111
|
+
function useServerTitleTemplate(titleTemplate) {
|
|
112
|
+
return useServerHead({ titleTemplate });
|
|
113
|
+
}
|
|
114
|
+
function useServerTagMeta(meta) {
|
|
115
|
+
return useServerHead({ meta: shared.asArray(meta) });
|
|
116
|
+
}
|
|
117
|
+
function useServerTagMetaFlat(meta) {
|
|
92
118
|
const input = vue.ref({});
|
|
93
119
|
vue.watchEffect(() => {
|
|
94
120
|
input.value = unhead.unpackMeta(useHead.resolveUnrefHeadInput(meta));
|
|
95
121
|
});
|
|
96
122
|
return useServerHead({ meta: input });
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
123
|
+
}
|
|
124
|
+
function useServerTagLink(link) {
|
|
125
|
+
return useServerHead({ link: shared.asArray(link) });
|
|
126
|
+
}
|
|
127
|
+
function useServerTagScript(script) {
|
|
128
|
+
return useServerHead({ script: shared.asArray(script) });
|
|
129
|
+
}
|
|
130
|
+
function useServerTagStyle(style) {
|
|
131
|
+
return useServerHead({ style: shared.asArray(style) });
|
|
132
|
+
}
|
|
133
|
+
function useServerTagNoscript(noscript) {
|
|
134
|
+
return useServerHead({ noscript: shared.asArray(noscript) });
|
|
135
|
+
}
|
|
136
|
+
function useServerTagBase(base) {
|
|
137
|
+
return useServerHead({ base });
|
|
138
|
+
}
|
|
139
|
+
function useServerHtmlAttrs(attrs) {
|
|
140
|
+
return useServerHead({ htmlAttrs: attrs });
|
|
141
|
+
}
|
|
142
|
+
function useServerBodyAttrs(attrs) {
|
|
143
|
+
return useHead.useHead({ bodyAttrs: attrs });
|
|
144
|
+
}
|
|
105
145
|
|
|
106
146
|
const coreComposableNames = [
|
|
107
147
|
"injectHead"
|
package/dist/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ declare const VueHeadMixin: {
|
|
|
22
22
|
created(): void;
|
|
23
23
|
};
|
|
24
24
|
|
|
25
|
-
declare
|
|
25
|
+
declare function VueReactiveUseHeadPlugin(): _unhead_schema.HeadPlugin;
|
|
26
26
|
|
|
27
27
|
declare const Vue2ProvideUnheadPlugin: Plugin;
|
|
28
28
|
|
|
@@ -34,7 +34,7 @@ type UseSeoMetaInput = MaybeComputedRefEntries<MetaFlatInput> & {
|
|
|
34
34
|
title?: ReactiveHead['title'];
|
|
35
35
|
titleTemplate?: ReactiveHead['titleTemplate'];
|
|
36
36
|
};
|
|
37
|
-
declare
|
|
37
|
+
declare function useSeoMeta(input: UseSeoMetaInput, options?: HeadEntryOptions): ActiveHeadEntry<any> | void;
|
|
38
38
|
|
|
39
39
|
declare function useServerHead<T extends MergeHead>(input: UseHeadInput<T>, options?: HeadEntryOptions): _unhead_schema.ActiveHeadEntry<UseHeadInput<T>>;
|
|
40
40
|
|
|
@@ -45,91 +45,91 @@ declare function useServerSeoMeta(input: UseSeoMetaInput, options?: HeadEntryOpt
|
|
|
45
45
|
/**
|
|
46
46
|
* @deprecated Use `useHead`
|
|
47
47
|
*/
|
|
48
|
-
declare
|
|
48
|
+
declare function useTagTitle(title: ReactiveHead['title']): ActiveHeadEntry<any> | void;
|
|
49
49
|
/**
|
|
50
50
|
* @deprecated Use `useHead`
|
|
51
51
|
*/
|
|
52
|
-
declare
|
|
52
|
+
declare function useTitleTemplate(titleTemplate: ReactiveHead['titleTemplate']): ActiveHeadEntry<any> | void;
|
|
53
53
|
/**
|
|
54
54
|
* @deprecated Use `useHead`
|
|
55
55
|
*/
|
|
56
|
-
declare
|
|
56
|
+
declare function useTagMeta(meta: Arrayable<Meta>): ActiveHeadEntry<any> | void;
|
|
57
57
|
/**
|
|
58
58
|
* @deprecated Use `useHead`
|
|
59
59
|
*/
|
|
60
|
-
declare
|
|
60
|
+
declare function useTagMetaFlat(meta: MaybeComputedRefEntries<MetaFlatInput>): ActiveHeadEntry<any> | void;
|
|
61
61
|
/**
|
|
62
62
|
* @deprecated Use `useHead`
|
|
63
63
|
*/
|
|
64
|
-
declare
|
|
64
|
+
declare function useTagLink(link: Arrayable<Link>): ActiveHeadEntry<any> | void;
|
|
65
65
|
/**
|
|
66
66
|
* @deprecated Use `useHead`
|
|
67
67
|
*/
|
|
68
|
-
declare
|
|
68
|
+
declare function useTagScript(script: Arrayable<Script>): ActiveHeadEntry<any> | void;
|
|
69
69
|
/**
|
|
70
70
|
* @deprecated Use `useHead`
|
|
71
71
|
*/
|
|
72
|
-
declare
|
|
72
|
+
declare function useTagStyle(style: Arrayable<Style>): ActiveHeadEntry<any> | void;
|
|
73
73
|
/**
|
|
74
74
|
* @deprecated Use `useHead`
|
|
75
75
|
*/
|
|
76
|
-
declare
|
|
76
|
+
declare function useTagNoscript(noscript: Arrayable<Noscript>): ActiveHeadEntry<any> | void;
|
|
77
77
|
/**
|
|
78
78
|
* @deprecated Use `useHead`
|
|
79
79
|
*/
|
|
80
|
-
declare
|
|
80
|
+
declare function useTagBase(base: ReactiveHead['base']): ActiveHeadEntry<any> | void;
|
|
81
81
|
/**
|
|
82
82
|
* @deprecated Use `useHead`
|
|
83
83
|
*/
|
|
84
|
-
declare
|
|
84
|
+
declare function useHtmlAttrs(attrs: ReactiveHead['htmlAttrs']): ActiveHeadEntry<any> | void;
|
|
85
85
|
/**
|
|
86
86
|
* @deprecated Use `useHead`
|
|
87
87
|
*/
|
|
88
|
-
declare
|
|
88
|
+
declare function useBodyAttrs(attrs: ReactiveHead['bodyAttrs']): ActiveHeadEntry<any> | void;
|
|
89
89
|
/**
|
|
90
90
|
* @deprecated Use `useHead`
|
|
91
91
|
*/
|
|
92
|
-
declare
|
|
92
|
+
declare function useServerTagTitle(title: ReactiveHead['title']): ActiveHeadEntry<any> | void;
|
|
93
93
|
/**
|
|
94
94
|
* @deprecated Use `useHead`
|
|
95
95
|
*/
|
|
96
|
-
declare
|
|
96
|
+
declare function useServerTitleTemplate(titleTemplate: ReactiveHead['titleTemplate']): ActiveHeadEntry<any> | void;
|
|
97
97
|
/**
|
|
98
98
|
* @deprecated Use `useHead`
|
|
99
99
|
*/
|
|
100
|
-
declare
|
|
100
|
+
declare function useServerTagMeta(meta: Arrayable<Meta>): ActiveHeadEntry<any> | void;
|
|
101
101
|
/**
|
|
102
102
|
* @deprecated Use `useHead`
|
|
103
103
|
*/
|
|
104
|
-
declare
|
|
104
|
+
declare function useServerTagMetaFlat(meta: MaybeComputedRefEntries<MetaFlatInput>): ActiveHeadEntry<any> | void;
|
|
105
105
|
/**
|
|
106
106
|
* @deprecated Use `useHead`
|
|
107
107
|
*/
|
|
108
|
-
declare
|
|
108
|
+
declare function useServerTagLink(link: Arrayable<Link>): ActiveHeadEntry<any> | void;
|
|
109
109
|
/**
|
|
110
110
|
* @deprecated Use `useHead`
|
|
111
111
|
*/
|
|
112
|
-
declare
|
|
112
|
+
declare function useServerTagScript(script: Arrayable<Script>): ActiveHeadEntry<any> | void;
|
|
113
113
|
/**
|
|
114
114
|
* @deprecated Use `useHead`
|
|
115
115
|
*/
|
|
116
|
-
declare
|
|
116
|
+
declare function useServerTagStyle(style: Arrayable<Style>): ActiveHeadEntry<any> | void;
|
|
117
117
|
/**
|
|
118
118
|
* @deprecated Use `useHead`
|
|
119
119
|
*/
|
|
120
|
-
declare
|
|
120
|
+
declare function useServerTagNoscript(noscript: Arrayable<Noscript>): ActiveHeadEntry<any> | void;
|
|
121
121
|
/**
|
|
122
122
|
* @deprecated Use `useHead`
|
|
123
123
|
*/
|
|
124
|
-
declare
|
|
124
|
+
declare function useServerTagBase(base: ReactiveHead['base']): ActiveHeadEntry<any> | void;
|
|
125
125
|
/**
|
|
126
126
|
* @deprecated Use `useHead`
|
|
127
127
|
*/
|
|
128
|
-
declare
|
|
128
|
+
declare function useServerHtmlAttrs(attrs: ReactiveHead['htmlAttrs']): ActiveHeadEntry<any> | void;
|
|
129
129
|
/**
|
|
130
130
|
* @deprecated Use `useHead`
|
|
131
131
|
*/
|
|
132
|
-
declare
|
|
132
|
+
declare function useServerBodyAttrs(attrs: ReactiveHead['bodyAttrs']): ActiveHeadEntry<any> | void;
|
|
133
133
|
|
|
134
134
|
declare const unheadVueComposablesImports: {
|
|
135
135
|
'@unhead/vue': string[];
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { whitelistSafeInput, unpackMeta, composableNames } from 'unhead';
|
|
2
2
|
export { createHeadCore } from 'unhead';
|
|
3
|
-
import { u as useHead, h as headSymbol, r as resolveUnrefHeadInput, s as serverUseHead } from './shared/vue.
|
|
4
|
-
export { V as VueReactiveUseHeadPlugin, a as createHead, c as createServerHead, i as injectHead } from './shared/vue.
|
|
3
|
+
import { u as useHead, h as headSymbol, r as resolveUnrefHeadInput, s as serverUseHead } from './shared/vue.505b826e.mjs';
|
|
4
|
+
export { V as VueReactiveUseHeadPlugin, a as createHead, c as createServerHead, i as injectHead } from './shared/vue.505b826e.mjs';
|
|
5
5
|
import { getCurrentInstance, ref, watchEffect } from 'vue';
|
|
6
6
|
import { asArray } from '@unhead/shared';
|
|
7
7
|
|
|
@@ -42,7 +42,7 @@ function useHeadSafe(input, options = {}) {
|
|
|
42
42
|
return useHead(input, { ...options, transform: whitelistSafeInput });
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
function useSeoMeta(input, options) {
|
|
46
46
|
const headInput = ref({});
|
|
47
47
|
watchEffect(() => {
|
|
48
48
|
const resolvedMeta = resolveUnrefHeadInput(input);
|
|
@@ -54,7 +54,7 @@ const useSeoMeta = (input, options) => {
|
|
|
54
54
|
};
|
|
55
55
|
});
|
|
56
56
|
return useHead(headInput, options);
|
|
57
|
-
}
|
|
57
|
+
}
|
|
58
58
|
|
|
59
59
|
function useServerHead(input, options = {}) {
|
|
60
60
|
return serverUseHead(input, { ...options, mode: "server" });
|
|
@@ -68,40 +68,80 @@ function useServerSeoMeta(input, options) {
|
|
|
68
68
|
return useSeoMeta(input, { ...options || {}, mode: "server" });
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
function useTagTitle(title) {
|
|
72
|
+
return useHead({ title });
|
|
73
|
+
}
|
|
74
|
+
function useTitleTemplate(titleTemplate) {
|
|
75
|
+
return useHead({ titleTemplate });
|
|
76
|
+
}
|
|
77
|
+
function useTagMeta(meta) {
|
|
78
|
+
return useHead({ meta: asArray(meta) });
|
|
79
|
+
}
|
|
80
|
+
function useTagMetaFlat(meta) {
|
|
75
81
|
const input = ref({});
|
|
76
82
|
watchEffect(() => {
|
|
77
83
|
input.value = unpackMeta(resolveUnrefHeadInput(meta));
|
|
78
84
|
});
|
|
79
85
|
return useHead({ meta: input });
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
86
|
+
}
|
|
87
|
+
function useTagLink(link) {
|
|
88
|
+
return useHead({ link: asArray(link) });
|
|
89
|
+
}
|
|
90
|
+
function useTagScript(script) {
|
|
91
|
+
return useHead({ script: asArray(script) });
|
|
92
|
+
}
|
|
93
|
+
function useTagStyle(style) {
|
|
94
|
+
return useHead({ style: asArray(style) });
|
|
95
|
+
}
|
|
96
|
+
function useTagNoscript(noscript) {
|
|
97
|
+
return useHead({ noscript: asArray(noscript) });
|
|
98
|
+
}
|
|
99
|
+
function useTagBase(base) {
|
|
100
|
+
return useHead({ base });
|
|
101
|
+
}
|
|
102
|
+
function useHtmlAttrs(attrs) {
|
|
103
|
+
return useHead({ htmlAttrs: attrs });
|
|
104
|
+
}
|
|
105
|
+
function useBodyAttrs(attrs) {
|
|
106
|
+
return useHead({ bodyAttrs: attrs });
|
|
107
|
+
}
|
|
108
|
+
function useServerTagTitle(title) {
|
|
109
|
+
return useServerHead({ title });
|
|
110
|
+
}
|
|
111
|
+
function useServerTitleTemplate(titleTemplate) {
|
|
112
|
+
return useServerHead({ titleTemplate });
|
|
113
|
+
}
|
|
114
|
+
function useServerTagMeta(meta) {
|
|
115
|
+
return useServerHead({ meta: asArray(meta) });
|
|
116
|
+
}
|
|
117
|
+
function useServerTagMetaFlat(meta) {
|
|
92
118
|
const input = ref({});
|
|
93
119
|
watchEffect(() => {
|
|
94
120
|
input.value = unpackMeta(resolveUnrefHeadInput(meta));
|
|
95
121
|
});
|
|
96
122
|
return useServerHead({ meta: input });
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
123
|
+
}
|
|
124
|
+
function useServerTagLink(link) {
|
|
125
|
+
return useServerHead({ link: asArray(link) });
|
|
126
|
+
}
|
|
127
|
+
function useServerTagScript(script) {
|
|
128
|
+
return useServerHead({ script: asArray(script) });
|
|
129
|
+
}
|
|
130
|
+
function useServerTagStyle(style) {
|
|
131
|
+
return useServerHead({ style: asArray(style) });
|
|
132
|
+
}
|
|
133
|
+
function useServerTagNoscript(noscript) {
|
|
134
|
+
return useServerHead({ noscript: asArray(noscript) });
|
|
135
|
+
}
|
|
136
|
+
function useServerTagBase(base) {
|
|
137
|
+
return useServerHead({ base });
|
|
138
|
+
}
|
|
139
|
+
function useServerHtmlAttrs(attrs) {
|
|
140
|
+
return useServerHead({ htmlAttrs: attrs });
|
|
141
|
+
}
|
|
142
|
+
function useServerBodyAttrs(attrs) {
|
|
143
|
+
return useHead({ bodyAttrs: attrs });
|
|
144
|
+
}
|
|
105
145
|
|
|
106
146
|
const coreComposableNames = [
|
|
107
147
|
"injectHead"
|
package/dist/polyfill.cjs
CHANGED
package/dist/polyfill.mjs
CHANGED
|
@@ -69,7 +69,7 @@ function createHead(options = {}) {
|
|
|
69
69
|
return head;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
function VueReactiveUseHeadPlugin() {
|
|
73
73
|
return defineHeadPlugin({
|
|
74
74
|
hooks: {
|
|
75
75
|
"entries:resolve": function(ctx) {
|
|
@@ -78,7 +78,7 @@ const VueReactiveUseHeadPlugin = () => {
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
});
|
|
81
|
-
}
|
|
81
|
+
}
|
|
82
82
|
|
|
83
83
|
function clientUseHead(input, options = {}) {
|
|
84
84
|
const head = injectHead();
|
|
@@ -71,7 +71,7 @@ function createHead(options = {}) {
|
|
|
71
71
|
return head;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
function VueReactiveUseHeadPlugin() {
|
|
75
75
|
return shared.defineHeadPlugin({
|
|
76
76
|
hooks: {
|
|
77
77
|
"entries:resolve": function(ctx) {
|
|
@@ -80,7 +80,7 @@ const VueReactiveUseHeadPlugin = () => {
|
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
});
|
|
83
|
-
}
|
|
83
|
+
}
|
|
84
84
|
|
|
85
85
|
function clientUseHead(input, options = {}) {
|
|
86
86
|
const head = injectHead();
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unhead/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.1.
|
|
5
|
-
"packageManager": "pnpm@
|
|
4
|
+
"version": "1.1.27",
|
|
5
|
+
"packageManager": "pnpm@8.5.0",
|
|
6
6
|
"author": "Harlan Wilton <harlan@harlanzw.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"funding": "https://github.com/sponsors/harlan-zw",
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"vue": ">=2.7 || >=3"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"hookable": "^5.5.
|
|
42
|
-
"@unhead/schema": "1.1.
|
|
43
|
-
"@unhead/shared": "1.1.
|
|
44
|
-
"unhead": "1.1.
|
|
41
|
+
"hookable": "^5.5.3",
|
|
42
|
+
"@unhead/schema": "1.1.27",
|
|
43
|
+
"@unhead/shared": "1.1.27",
|
|
44
|
+
"unhead": "1.1.27"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"vue": "^3.
|
|
47
|
+
"vue": "^3.3.4"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "unbuild .",
|