feat(runtime-core): async component support

This commit is contained in:
Evan You
2020-03-21 16:01:08 -04:00
parent d425818901
commit c3bb3169f4
5 changed files with 629 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ export {
export { provide, inject } from './apiInject'
export { nextTick } from './scheduler'
export { defineComponent } from './apiDefineComponent'
export { createAsyncComponent } from './apiAsyncComponent'
// Advanced API ----------------------------------------------------------------
@@ -204,4 +205,8 @@ export {
} from './directives'
export { SuspenseBoundary } from './components/Suspense'
export { TransitionState, TransitionHooks } from './components/BaseTransition'
export {
AsyncComponentOptions,
AsyncComponentLoader
} from './apiAsyncComponent'
export { HMRRuntime } from './hmr'