@vue/runtime-dom 3.3.0-alpha.4 → 3.3.0-alpha.6
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/runtime-dom.cjs.js +2 -2
- package/dist/runtime-dom.cjs.prod.js +2 -2
- package/dist/runtime-dom.d.ts +1081 -1297
- package/dist/runtime-dom.esm-browser.js +124 -108
- package/dist/runtime-dom.esm-browser.prod.js +1 -1
- package/dist/runtime-dom.global.js +124 -107
- package/dist/runtime-dom.global.prod.js +1 -1
- package/package.json +4 -4
|
@@ -7,6 +7,96 @@ function makeMap(str, expectsLowerCase) {
|
|
|
7
7
|
return expectsLowerCase ? (val) => !!map[val.toLowerCase()] : (val) => !!map[val];
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
const EMPTY_OBJ = Object.freeze({}) ;
|
|
11
|
+
const EMPTY_ARR = Object.freeze([]) ;
|
|
12
|
+
const NOOP = () => {
|
|
13
|
+
};
|
|
14
|
+
const NO = () => false;
|
|
15
|
+
const onRE = /^on[^a-z]/;
|
|
16
|
+
const isOn = (key) => onRE.test(key);
|
|
17
|
+
const isModelListener = (key) => key.startsWith("onUpdate:");
|
|
18
|
+
const extend = Object.assign;
|
|
19
|
+
const remove = (arr, el) => {
|
|
20
|
+
const i = arr.indexOf(el);
|
|
21
|
+
if (i > -1) {
|
|
22
|
+
arr.splice(i, 1);
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
const hasOwnProperty$1 = Object.prototype.hasOwnProperty;
|
|
26
|
+
const hasOwn = (val, key) => hasOwnProperty$1.call(val, key);
|
|
27
|
+
const isArray = Array.isArray;
|
|
28
|
+
const isMap = (val) => toTypeString(val) === "[object Map]";
|
|
29
|
+
const isSet = (val) => toTypeString(val) === "[object Set]";
|
|
30
|
+
const isDate = (val) => toTypeString(val) === "[object Date]";
|
|
31
|
+
const isRegExp = (val) => toTypeString(val) === "[object RegExp]";
|
|
32
|
+
const isFunction = (val) => typeof val === "function";
|
|
33
|
+
const isString = (val) => typeof val === "string";
|
|
34
|
+
const isSymbol = (val) => typeof val === "symbol";
|
|
35
|
+
const isObject = (val) => val !== null && typeof val === "object";
|
|
36
|
+
const isPromise = (val) => {
|
|
37
|
+
return isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
|
38
|
+
};
|
|
39
|
+
const objectToString = Object.prototype.toString;
|
|
40
|
+
const toTypeString = (value) => objectToString.call(value);
|
|
41
|
+
const toRawType = (value) => {
|
|
42
|
+
return toTypeString(value).slice(8, -1);
|
|
43
|
+
};
|
|
44
|
+
const isPlainObject = (val) => toTypeString(val) === "[object Object]";
|
|
45
|
+
const isIntegerKey = (key) => isString(key) && key !== "NaN" && key[0] !== "-" && "" + parseInt(key, 10) === key;
|
|
46
|
+
const isReservedProp = /* @__PURE__ */ makeMap(
|
|
47
|
+
// the leading comma is intentional so empty string "" is also included
|
|
48
|
+
",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"
|
|
49
|
+
);
|
|
50
|
+
const isBuiltInDirective = /* @__PURE__ */ makeMap(
|
|
51
|
+
"bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"
|
|
52
|
+
);
|
|
53
|
+
const cacheStringFunction = (fn) => {
|
|
54
|
+
const cache = /* @__PURE__ */ Object.create(null);
|
|
55
|
+
return (str) => {
|
|
56
|
+
const hit = cache[str];
|
|
57
|
+
return hit || (cache[str] = fn(str));
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
const camelizeRE = /-(\w)/g;
|
|
61
|
+
const camelize = cacheStringFunction((str) => {
|
|
62
|
+
return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
|
|
63
|
+
});
|
|
64
|
+
const hyphenateRE = /\B([A-Z])/g;
|
|
65
|
+
const hyphenate = cacheStringFunction(
|
|
66
|
+
(str) => str.replace(hyphenateRE, "-$1").toLowerCase()
|
|
67
|
+
);
|
|
68
|
+
const capitalize = cacheStringFunction(
|
|
69
|
+
(str) => str.charAt(0).toUpperCase() + str.slice(1)
|
|
70
|
+
);
|
|
71
|
+
const toHandlerKey = cacheStringFunction(
|
|
72
|
+
(str) => str ? `on${capitalize(str)}` : ``
|
|
73
|
+
);
|
|
74
|
+
const hasChanged = (value, oldValue) => !Object.is(value, oldValue);
|
|
75
|
+
const invokeArrayFns = (fns, arg) => {
|
|
76
|
+
for (let i = 0; i < fns.length; i++) {
|
|
77
|
+
fns[i](arg);
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
const def = (obj, key, value) => {
|
|
81
|
+
Object.defineProperty(obj, key, {
|
|
82
|
+
configurable: true,
|
|
83
|
+
enumerable: false,
|
|
84
|
+
value
|
|
85
|
+
});
|
|
86
|
+
};
|
|
87
|
+
const looseToNumber = (val) => {
|
|
88
|
+
const n = parseFloat(val);
|
|
89
|
+
return isNaN(n) ? val : n;
|
|
90
|
+
};
|
|
91
|
+
const toNumber = (val) => {
|
|
92
|
+
const n = isString(val) ? Number(val) : NaN;
|
|
93
|
+
return isNaN(n) ? val : n;
|
|
94
|
+
};
|
|
95
|
+
let _globalThis;
|
|
96
|
+
const getGlobalThis = () => {
|
|
97
|
+
return _globalThis || (_globalThis = typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : {});
|
|
98
|
+
};
|
|
99
|
+
|
|
10
100
|
const GLOBALS_WHITE_LISTED = "Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt";
|
|
11
101
|
const isGloballyWhitelisted = /* @__PURE__ */ makeMap(GLOBALS_WHITE_LISTED);
|
|
12
102
|
|
|
@@ -161,96 +251,6 @@ const replacer = (_key, val) => {
|
|
|
161
251
|
return val;
|
|
162
252
|
};
|
|
163
253
|
|
|
164
|
-
const EMPTY_OBJ = Object.freeze({}) ;
|
|
165
|
-
const EMPTY_ARR = Object.freeze([]) ;
|
|
166
|
-
const NOOP = () => {
|
|
167
|
-
};
|
|
168
|
-
const NO = () => false;
|
|
169
|
-
const onRE = /^on[^a-z]/;
|
|
170
|
-
const isOn = (key) => onRE.test(key);
|
|
171
|
-
const isModelListener = (key) => key.startsWith("onUpdate:");
|
|
172
|
-
const extend = Object.assign;
|
|
173
|
-
const remove = (arr, el) => {
|
|
174
|
-
const i = arr.indexOf(el);
|
|
175
|
-
if (i > -1) {
|
|
176
|
-
arr.splice(i, 1);
|
|
177
|
-
}
|
|
178
|
-
};
|
|
179
|
-
const hasOwnProperty$1 = Object.prototype.hasOwnProperty;
|
|
180
|
-
const hasOwn = (val, key) => hasOwnProperty$1.call(val, key);
|
|
181
|
-
const isArray = Array.isArray;
|
|
182
|
-
const isMap = (val) => toTypeString(val) === "[object Map]";
|
|
183
|
-
const isSet = (val) => toTypeString(val) === "[object Set]";
|
|
184
|
-
const isDate = (val) => toTypeString(val) === "[object Date]";
|
|
185
|
-
const isRegExp = (val) => toTypeString(val) === "[object RegExp]";
|
|
186
|
-
const isFunction = (val) => typeof val === "function";
|
|
187
|
-
const isString = (val) => typeof val === "string";
|
|
188
|
-
const isSymbol = (val) => typeof val === "symbol";
|
|
189
|
-
const isObject = (val) => val !== null && typeof val === "object";
|
|
190
|
-
const isPromise = (val) => {
|
|
191
|
-
return isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
|
192
|
-
};
|
|
193
|
-
const objectToString = Object.prototype.toString;
|
|
194
|
-
const toTypeString = (value) => objectToString.call(value);
|
|
195
|
-
const toRawType = (value) => {
|
|
196
|
-
return toTypeString(value).slice(8, -1);
|
|
197
|
-
};
|
|
198
|
-
const isPlainObject = (val) => toTypeString(val) === "[object Object]";
|
|
199
|
-
const isIntegerKey = (key) => isString(key) && key !== "NaN" && key[0] !== "-" && "" + parseInt(key, 10) === key;
|
|
200
|
-
const isReservedProp = /* @__PURE__ */ makeMap(
|
|
201
|
-
// the leading comma is intentional so empty string "" is also included
|
|
202
|
-
",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"
|
|
203
|
-
);
|
|
204
|
-
const isBuiltInDirective = /* @__PURE__ */ makeMap(
|
|
205
|
-
"bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"
|
|
206
|
-
);
|
|
207
|
-
const cacheStringFunction = (fn) => {
|
|
208
|
-
const cache = /* @__PURE__ */ Object.create(null);
|
|
209
|
-
return (str) => {
|
|
210
|
-
const hit = cache[str];
|
|
211
|
-
return hit || (cache[str] = fn(str));
|
|
212
|
-
};
|
|
213
|
-
};
|
|
214
|
-
const camelizeRE = /-(\w)/g;
|
|
215
|
-
const camelize = cacheStringFunction((str) => {
|
|
216
|
-
return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
|
|
217
|
-
});
|
|
218
|
-
const hyphenateRE = /\B([A-Z])/g;
|
|
219
|
-
const hyphenate = cacheStringFunction(
|
|
220
|
-
(str) => str.replace(hyphenateRE, "-$1").toLowerCase()
|
|
221
|
-
);
|
|
222
|
-
const capitalize = cacheStringFunction(
|
|
223
|
-
(str) => str.charAt(0).toUpperCase() + str.slice(1)
|
|
224
|
-
);
|
|
225
|
-
const toHandlerKey = cacheStringFunction(
|
|
226
|
-
(str) => str ? `on${capitalize(str)}` : ``
|
|
227
|
-
);
|
|
228
|
-
const hasChanged = (value, oldValue) => !Object.is(value, oldValue);
|
|
229
|
-
const invokeArrayFns = (fns, arg) => {
|
|
230
|
-
for (let i = 0; i < fns.length; i++) {
|
|
231
|
-
fns[i](arg);
|
|
232
|
-
}
|
|
233
|
-
};
|
|
234
|
-
const def = (obj, key, value) => {
|
|
235
|
-
Object.defineProperty(obj, key, {
|
|
236
|
-
configurable: true,
|
|
237
|
-
enumerable: false,
|
|
238
|
-
value
|
|
239
|
-
});
|
|
240
|
-
};
|
|
241
|
-
const looseToNumber = (val) => {
|
|
242
|
-
const n = parseFloat(val);
|
|
243
|
-
return isNaN(n) ? val : n;
|
|
244
|
-
};
|
|
245
|
-
const toNumber = (val) => {
|
|
246
|
-
const n = isString(val) ? Number(val) : NaN;
|
|
247
|
-
return isNaN(n) ? val : n;
|
|
248
|
-
};
|
|
249
|
-
let _globalThis;
|
|
250
|
-
const getGlobalThis = () => {
|
|
251
|
-
return _globalThis || (_globalThis = typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : {});
|
|
252
|
-
};
|
|
253
|
-
|
|
254
254
|
function warn$1(msg, ...args) {
|
|
255
255
|
console.warn(`[Vue warn] ${msg}`, ...args);
|
|
256
256
|
}
|
|
@@ -3549,8 +3549,8 @@ function getTransitionRawChildren(children, keepComment = false, parentKey) {
|
|
|
3549
3549
|
return ret;
|
|
3550
3550
|
}
|
|
3551
3551
|
|
|
3552
|
-
function defineComponent(options) {
|
|
3553
|
-
return isFunction(options) ? { setup: options, name: options.name } : options;
|
|
3552
|
+
function defineComponent(options, extraOptions) {
|
|
3553
|
+
return isFunction(options) ? extend({}, extraOptions, { setup: options, name: options.name }) : options;
|
|
3554
3554
|
}
|
|
3555
3555
|
|
|
3556
3556
|
const isAsyncWrapper = (i) => !!i.type.__asyncLoader;
|
|
@@ -4046,7 +4046,7 @@ const DIRECTIVES = "directives";
|
|
|
4046
4046
|
function resolveComponent(name, maybeSelfReference) {
|
|
4047
4047
|
return resolveAsset(COMPONENTS, name, true, maybeSelfReference) || name;
|
|
4048
4048
|
}
|
|
4049
|
-
const NULL_DYNAMIC_COMPONENT = Symbol();
|
|
4049
|
+
const NULL_DYNAMIC_COMPONENT = Symbol.for("v-ndc");
|
|
4050
4050
|
function resolveDynamicComponent(component) {
|
|
4051
4051
|
if (isString(component)) {
|
|
4052
4052
|
return resolveAsset(COMPONENTS, component, false) || component;
|
|
@@ -5047,7 +5047,7 @@ function resolvePropValue(options, props, key, value, instance, isAbsent) {
|
|
|
5047
5047
|
const hasDefault = hasOwn(opt, "default");
|
|
5048
5048
|
if (hasDefault && value === void 0) {
|
|
5049
5049
|
const defaultValue = opt.default;
|
|
5050
|
-
if (opt.type !== Function && isFunction(defaultValue)) {
|
|
5050
|
+
if (opt.type !== Function && !opt.skipFactory && isFunction(defaultValue)) {
|
|
5051
5051
|
const { propsDefaults } = instance;
|
|
5052
5052
|
if (key in propsDefaults) {
|
|
5053
5053
|
value = propsDefaults[key];
|
|
@@ -5183,7 +5183,7 @@ function validateProps(rawProps, props, instance) {
|
|
|
5183
5183
|
}
|
|
5184
5184
|
}
|
|
5185
5185
|
function validateProp(name, value, prop, isAbsent) {
|
|
5186
|
-
const { type, required, validator } = prop;
|
|
5186
|
+
const { type, required, validator, skipCheck } = prop;
|
|
5187
5187
|
if (required && isAbsent) {
|
|
5188
5188
|
warn('Missing required prop: "' + name + '"');
|
|
5189
5189
|
return;
|
|
@@ -5191,7 +5191,7 @@ function validateProp(name, value, prop, isAbsent) {
|
|
|
5191
5191
|
if (value == null && !prop.required) {
|
|
5192
5192
|
return;
|
|
5193
5193
|
}
|
|
5194
|
-
if (type != null && type !== true) {
|
|
5194
|
+
if (type != null && type !== true && !skipCheck) {
|
|
5195
5195
|
let isValid = false;
|
|
5196
5196
|
const types = isArray(type) ? type : [type];
|
|
5197
5197
|
const expectedTypes = [];
|
|
@@ -7804,10 +7804,10 @@ function updateCssVars(vnode) {
|
|
|
7804
7804
|
}
|
|
7805
7805
|
}
|
|
7806
7806
|
|
|
7807
|
-
const Fragment = Symbol("
|
|
7808
|
-
const Text = Symbol("
|
|
7809
|
-
const Comment = Symbol("
|
|
7810
|
-
const Static = Symbol("
|
|
7807
|
+
const Fragment = Symbol.for("v-fgt");
|
|
7808
|
+
const Text = Symbol.for("v-txt");
|
|
7809
|
+
const Comment = Symbol.for("v-cmt");
|
|
7810
|
+
const Static = Symbol.for("v-stc");
|
|
7811
7811
|
const blockStack = [];
|
|
7812
7812
|
let currentBlock = null;
|
|
7813
7813
|
function openBlock(disableTracking = false) {
|
|
@@ -8259,13 +8259,19 @@ function createComponentInstance(vnode, parent, suspense) {
|
|
|
8259
8259
|
}
|
|
8260
8260
|
let currentInstance = null;
|
|
8261
8261
|
const getCurrentInstance = () => currentInstance || currentRenderingInstance;
|
|
8262
|
+
let internalSetCurrentInstance;
|
|
8263
|
+
{
|
|
8264
|
+
internalSetCurrentInstance = (i) => {
|
|
8265
|
+
currentInstance = i;
|
|
8266
|
+
};
|
|
8267
|
+
}
|
|
8262
8268
|
const setCurrentInstance = (instance) => {
|
|
8263
|
-
|
|
8269
|
+
internalSetCurrentInstance(instance);
|
|
8264
8270
|
instance.scope.on();
|
|
8265
8271
|
};
|
|
8266
8272
|
const unsetCurrentInstance = () => {
|
|
8267
8273
|
currentInstance && currentInstance.scope.off();
|
|
8268
|
-
|
|
8274
|
+
internalSetCurrentInstance(null);
|
|
8269
8275
|
};
|
|
8270
8276
|
const isBuiltInTag = /* @__PURE__ */ makeMap("slot,component");
|
|
8271
8277
|
function validateComponentName(name, config) {
|
|
@@ -8574,6 +8580,11 @@ function defineExpose(exposed) {
|
|
|
8574
8580
|
warnRuntimeUsage(`defineExpose`);
|
|
8575
8581
|
}
|
|
8576
8582
|
}
|
|
8583
|
+
function defineOptions(options) {
|
|
8584
|
+
{
|
|
8585
|
+
warnRuntimeUsage(`defineOptions`);
|
|
8586
|
+
}
|
|
8587
|
+
}
|
|
8577
8588
|
function withDefaults(props, defaults) {
|
|
8578
8589
|
{
|
|
8579
8590
|
warnRuntimeUsage(`withDefaults`);
|
|
@@ -8599,18 +8610,23 @@ function mergeDefaults(raw, defaults) {
|
|
|
8599
8610
|
{}
|
|
8600
8611
|
) : raw;
|
|
8601
8612
|
for (const key in defaults) {
|
|
8602
|
-
|
|
8613
|
+
if (key.startsWith("__skip"))
|
|
8614
|
+
continue;
|
|
8615
|
+
let opt = props[key];
|
|
8603
8616
|
if (opt) {
|
|
8604
8617
|
if (isArray(opt) || isFunction(opt)) {
|
|
8605
|
-
props[key] = { type: opt, default: defaults[key] };
|
|
8618
|
+
opt = props[key] = { type: opt, default: defaults[key] };
|
|
8606
8619
|
} else {
|
|
8607
8620
|
opt.default = defaults[key];
|
|
8608
8621
|
}
|
|
8609
8622
|
} else if (opt === null) {
|
|
8610
|
-
props[key] = { default: defaults[key] };
|
|
8623
|
+
opt = props[key] = { default: defaults[key] };
|
|
8611
8624
|
} else {
|
|
8612
8625
|
warn(`props default key "${key}" has no corresponding declaration.`);
|
|
8613
8626
|
}
|
|
8627
|
+
if (opt && defaults[`__skip_${key}`]) {
|
|
8628
|
+
opt.skipFactory = true;
|
|
8629
|
+
}
|
|
8614
8630
|
}
|
|
8615
8631
|
return props;
|
|
8616
8632
|
}
|
|
@@ -8665,7 +8681,7 @@ function h(type, propsOrChildren, children) {
|
|
|
8665
8681
|
}
|
|
8666
8682
|
}
|
|
8667
8683
|
|
|
8668
|
-
const ssrContextKey = Symbol(
|
|
8684
|
+
const ssrContextKey = Symbol.for("v-scx");
|
|
8669
8685
|
const useSSRContext = () => {
|
|
8670
8686
|
{
|
|
8671
8687
|
const ctx = inject(ssrContextKey);
|
|
@@ -8879,7 +8895,7 @@ function isMemoSame(cached, memo) {
|
|
|
8879
8895
|
return true;
|
|
8880
8896
|
}
|
|
8881
8897
|
|
|
8882
|
-
const version = "3.3.0-alpha.
|
|
8898
|
+
const version = "3.3.0-alpha.6";
|
|
8883
8899
|
const ssrUtils = null;
|
|
8884
8900
|
const resolveFilter = null;
|
|
8885
8901
|
const compatUtils = null;
|
|
@@ -10348,4 +10364,4 @@ function normalizeContainer(container) {
|
|
|
10348
10364
|
}
|
|
10349
10365
|
const initDirectivesForSSR = NOOP;
|
|
10350
10366
|
|
|
10351
|
-
export { BaseTransition, BaseTransitionPropsValidators, Comment, EffectScope, Fragment, KeepAlive, ReactiveEffect, Static, Suspense, Teleport, Text, Transition, TransitionGroup, VueElement, assertNumber, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, cloneVNode, compatUtils, computed, createApp, createBlock, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, customRef, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineProps, defineSSRCustomElement, devtools, effect, effectScope, getCurrentInstance, getCurrentScope, getTransitionRawChildren, guardReactiveProps, h, handleError, hydrate, initCustomFormatter, initDirectivesForSSR, inject, isMemoSame, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isShallow, isVNode, markRaw, mergeDefaults, mergeProps, nextTick, normalizeClass, normalizeProps, normalizeStyle, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, openBlock, popScopeId, provide, proxyRefs, pushScopeId, queuePostFlushCb, reactive, readonly, ref, registerRuntimeCompiler, render, renderList, renderSlot, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolveTransitionHooks, setBlockTracking, setDevtoolsHook, setTransitionHooks, shallowReactive, shallowReadonly, shallowRef, ssrContextKey, ssrUtils, stop, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, transformVNodeArgs, triggerRef, unref, useAttrs, useCssModule, useCssVars, useSSRContext, useSlots, useTransitionState, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, version, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId };
|
|
10367
|
+
export { BaseTransition, BaseTransitionPropsValidators, Comment, EffectScope, Fragment, KeepAlive, ReactiveEffect, Static, Suspense, Teleport, Text, Transition, TransitionGroup, VueElement, assertNumber, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, cloneVNode, compatUtils, computed, createApp, createBlock, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, customRef, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineOptions, defineProps, defineSSRCustomElement, devtools, effect, effectScope, getCurrentInstance, getCurrentScope, getTransitionRawChildren, guardReactiveProps, h, handleError, hydrate, initCustomFormatter, initDirectivesForSSR, inject, isMemoSame, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isShallow, isVNode, markRaw, mergeDefaults, mergeProps, nextTick, normalizeClass, normalizeProps, normalizeStyle, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, openBlock, popScopeId, provide, proxyRefs, pushScopeId, queuePostFlushCb, reactive, readonly, ref, registerRuntimeCompiler, render, renderList, renderSlot, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolveTransitionHooks, setBlockTracking, setDevtoolsHook, setTransitionHooks, shallowReactive, shallowReadonly, shallowRef, ssrContextKey, ssrUtils, stop, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, transformVNodeArgs, triggerRef, unref, useAttrs, useCssModule, useCssVars, useSSRContext, useSlots, useTransitionState, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, version, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId };
|