mirror of
https://github.com/vuejs/vue.git
synced 2024-11-21 12:18:54 +00:00
parent
cc14d4452c
commit
738f4b3c57
152
dist/vue.runtime.mjs
vendored
152
dist/vue.runtime.mjs
vendored
@ -1,76 +1,76 @@
|
|||||||
import Vue from './vue.runtime.common.js'
|
import Vue from './vue.runtime.common.js'
|
||||||
export default Vue
|
export default Vue
|
||||||
|
|
||||||
// this should be kept in sync with src/v3/index.ts
|
// this should be kept in sync with src/v3/index.ts
|
||||||
export const {
|
export const {
|
||||||
version,
|
version,
|
||||||
|
|
||||||
// refs
|
// refs
|
||||||
ref,
|
ref,
|
||||||
shallowRef,
|
shallowRef,
|
||||||
isRef,
|
isRef,
|
||||||
toRef,
|
toRef,
|
||||||
toRefs,
|
toRefs,
|
||||||
unref,
|
unref,
|
||||||
proxyRefs,
|
proxyRefs,
|
||||||
customRef,
|
customRef,
|
||||||
triggerRef,
|
triggerRef,
|
||||||
computed,
|
computed,
|
||||||
|
|
||||||
// reactive
|
// reactive
|
||||||
reactive,
|
reactive,
|
||||||
isReactive,
|
isReactive,
|
||||||
isReadonly,
|
isReadonly,
|
||||||
isShallow,
|
isShallow,
|
||||||
isProxy,
|
isProxy,
|
||||||
shallowReactive,
|
shallowReactive,
|
||||||
markRaw,
|
markRaw,
|
||||||
toRaw,
|
toRaw,
|
||||||
readonly,
|
readonly,
|
||||||
shallowReadonly,
|
shallowReadonly,
|
||||||
|
|
||||||
// watch
|
// watch
|
||||||
watch,
|
watch,
|
||||||
watchEffect,
|
watchEffect,
|
||||||
watchPostEffect,
|
watchPostEffect,
|
||||||
watchSyncEffect,
|
watchSyncEffect,
|
||||||
|
|
||||||
// effectScope
|
// effectScope
|
||||||
effectScope,
|
effectScope,
|
||||||
onScopeDispose,
|
onScopeDispose,
|
||||||
getCurrentScope,
|
getCurrentScope,
|
||||||
|
|
||||||
// provide / inject
|
// provide / inject
|
||||||
provide,
|
provide,
|
||||||
inject,
|
inject,
|
||||||
|
|
||||||
// lifecycle
|
// lifecycle
|
||||||
onBeforeMount,
|
onBeforeMount,
|
||||||
onMounted,
|
onMounted,
|
||||||
onBeforeUpdate,
|
onBeforeUpdate,
|
||||||
onUpdated,
|
onUpdated,
|
||||||
onBeforeUnmount,
|
onBeforeUnmount,
|
||||||
onUnmounted,
|
onUnmounted,
|
||||||
onErrorCaptured,
|
onErrorCaptured,
|
||||||
onActivated,
|
onActivated,
|
||||||
onDeactivated,
|
onDeactivated,
|
||||||
onServerPrefetch,
|
onServerPrefetch,
|
||||||
onRenderTracked,
|
onRenderTracked,
|
||||||
onRenderTriggered,
|
onRenderTriggered,
|
||||||
|
|
||||||
// v2 only
|
// v2 only
|
||||||
set,
|
set,
|
||||||
del,
|
del,
|
||||||
|
|
||||||
// v3 compat
|
// v3 compat
|
||||||
h,
|
h,
|
||||||
getCurrentInstance,
|
getCurrentInstance,
|
||||||
useSlots,
|
useSlots,
|
||||||
useAttrs,
|
useAttrs,
|
||||||
mergeDefaults,
|
mergeDefaults,
|
||||||
nextTick,
|
nextTick,
|
||||||
useCssModule,
|
useCssModule,
|
||||||
useCssVars,
|
useCssVars,
|
||||||
defineComponent,
|
defineComponent,
|
||||||
defineAsyncComponent
|
defineAsyncComponent
|
||||||
} = Vue
|
} = Vue
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
"target": "esnext",
|
"target": "esnext",
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
|
"newLine": "LF",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
|
Loading…
Reference in New Issue
Block a user