This commit is contained in:
2022-07-18 02:50:52 +00:00
parent befd344ab0
commit 06181b34d6
8569 changed files with 818704 additions and 352705 deletions
+14
View File
@@ -0,0 +1,14 @@
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var compilerSfc = require('@vue/compiler-sfc');
Object.keys(compilerSfc).forEach(function (k) {
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
enumerable: true,
get: function () { return compilerSfc[k]; }
});
});
+11579 -11839
View File
File diff suppressed because it is too large Load Diff
+8 -3
View File
File diff suppressed because one or more lines are too long
+11519 -11922
View File
File diff suppressed because it is too large Load Diff
+8 -3
View File
File diff suppressed because one or more lines are too long
+11702 -11901
View File
File diff suppressed because it is too large Load Diff
+11680 -11838
View File
File diff suppressed because it is too large Load Diff
+8 -3
View File
File diff suppressed because one or more lines are too long
+8514 -8305
View File
File diff suppressed because it is too large Load Diff
+8 -3
View File
File diff suppressed because one or more lines are too long
+8623 -8358
View File
File diff suppressed because it is too large Load Diff
+8587 -8300
View File
File diff suppressed because it is too large Load Diff
+8 -3
View File
File diff suppressed because one or more lines are too long
+76
View File
@@ -0,0 +1,76 @@
import Vue from './vue.runtime.common.js'
export default Vue
// this should be kept in sync with src/v3/index.ts
export const {
version,
// refs
ref,
shallowRef,
isRef,
toRef,
toRefs,
unref,
proxyRefs,
customRef,
triggerRef,
computed,
// reactive
reactive,
isReactive,
isReadonly,
isShallow,
isProxy,
shallowReactive,
markRaw,
toRaw,
readonly,
shallowReadonly,
// watch
watch,
watchEffect,
watchPostEffect,
watchSyncEffect,
// effectScope
effectScope,
onScopeDispose,
getCurrentScope,
// provide / inject
provide,
inject,
// lifecycle
onBeforeMount,
onMounted,
onBeforeUpdate,
onUpdated,
onBeforeUnmount,
onUnmounted,
onErrorCaptured,
onActivated,
onDeactivated,
onServerPrefetch,
onRenderTracked,
onRenderTriggered,
// v2 only
set,
del,
// v3 compat
h,
getCurrentInstance,
useSlots,
useAttrs,
mergeDefaults,
nextTick,
useCssModule,
useCssVars,
defineComponent,
defineAsyncComponent
} = Vue