| 123456789101112131415161718 |
- diff --git a/dist/vue.runtime.esm.js b/dist/vue.runtime.esm.js
- index 015324488316ff7be8e1ce43fcd52d1330cbba1d..3220d96aff6bd939c734b6fa2d5f129c4c3b1c4f 100644
- --- a/dist/vue.runtime.esm.js
- +++ b/dist/vue.runtime.esm.js
- @@ -5869,5 +5869,12 @@ function createApp(rootComponent, rootProps = null) {
- return createVueApp(rootComponent, rootProps).use(plugin);
- }
- const createSSRApp = createApp;
- -
- +function createMockComponent(name){
- + return{
- + setup(){
- + throw new Error(`${name} is a mock component and should not be rendered.2026-1-15-zt`)
- + }
- + }
- + }
- +export var TransitionGroup = /*#_PURE__*/ createMockComponent('TransitionGroup')
- export { EffectScope, Fragment, ReactiveEffect, Text, c, callWithAsyncErrorHandling, callWithErrorHandling, computed, createApp, createPropsRestProxy, createSSRApp, createVNode, createVueApp, customRef, d, defineAsyncComponent, defineComponent, defineEmits, defineExpose, defineProps, devtoolsComponentAdded, devtoolsComponentRemoved, devtoolsComponentUpdated, diff, e, effect, effectScope, f, findComponentPropsData, gei, getCurrentInstance, getCurrentScope, getExposeProxy, guardReactiveProps, h, hasInjectionContext, hasQueueJob, inject, injectHook, invalidateJob, isInSSRComponentSetup, isProxy, isReactive, isReadonly, isRef, isShallow, j, logError, m, markRaw, mergeDefaults, mergeModels, mergeProps, n, nextTick$1 as nextTick, o, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, p, patch, provide, proxyRefs, pruneComponentPropsCache, queuePostFlushCb, r, reactive, readonly, ref, resolveComponent, resolveDirective, resolveFilter, s, setCurrentRenderingInstance, setTemplateRef, setupDevtoolsPlugin, shallowReactive, shallowReadonly, shallowRef, sr, stop, t, toHandlers, toRaw, toRef, toRefs, toValue, triggerRef, unref, updateProps, useAttrs, useCssModule, useCssVars, useModel, useSSRContext, useSlots, version, w, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withModifiers, withScopeId };
|