refactor: extract SFCInternalOptions inteface

This commit is contained in:
Evan You 2019-12-16 10:36:48 -05:00
parent 3ec1dd6f74
commit b2c2d0590e
2 changed files with 10 additions and 12 deletions

View File

@ -3,7 +3,8 @@ import {
Data, Data,
Component, Component,
SetupContext, SetupContext,
RenderFunction RenderFunction,
SFCInternalOptions
} from './component' } from './component'
import { import {
isFunction, isFunction,
@ -48,7 +49,7 @@ export interface ComponentOptionsBase<
D, D,
C extends ComputedOptions, C extends ComputedOptions,
M extends MethodOptions M extends MethodOptions
> extends LegacyOptions<Props, RawBindings, D, C, M> { > extends LegacyOptions<Props, RawBindings, D, C, M>, SFCInternalOptions {
setup?: ( setup?: (
this: null, this: null,
props: Props, props: Props,
@ -66,11 +67,6 @@ export interface ComponentOptionsBase<
directives?: Record<string, Directive> directives?: Record<string, Directive>
inheritAttrs?: boolean inheritAttrs?: boolean
// SFC & dev only
__scopeId?: string
__hmrId?: string
__hmrUpdated?: boolean
// type-only differentiator to separate OptionWithoutProps from a constructor // type-only differentiator to separate OptionWithoutProps from a constructor
// type returned by createComponent() or FunctionalComponent // type returned by createComponent() or FunctionalComponent
call?: never call?: never

View File

@ -32,15 +32,17 @@ import { currentRenderingInstance } from './componentRenderUtils'
export type Data = { [key: string]: unknown } export type Data = { [key: string]: unknown }
export interface FunctionalComponent<P = {}> { export interface SFCInternalOptions {
__scopeId?: string
__hmrId?: string
__hmrUpdated?: boolean
}
export interface FunctionalComponent<P = {}> extends SFCInternalOptions {
(props: P, ctx: SetupContext): VNodeChild (props: P, ctx: SetupContext): VNodeChild
props?: ComponentPropsOptions<P> props?: ComponentPropsOptions<P>
inheritAttrs?: boolean inheritAttrs?: boolean
displayName?: string displayName?: string
// internal HMR related flags
__hmrId?: string
__hmrUpdated?: boolean
} }
export type Component = ComponentOptions | FunctionalComponent export type Component = ComponentOptions | FunctionalComponent