| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- import type {
- ComponentInjectOptions,
- ComponentOptions,
- ComponentOptionsBase,
- ComponentOptionsMixin,
- ComponentOptionsWithArrayProps,
- ComponentOptionsWithObjectProps,
- ComponentOptionsWithoutProps,
- ComputedOptions,
- MethodOptions,
- RenderFunction,
- } from './componentOptions'
- import type {
- AllowedComponentProps,
- ComponentCustomProps,
- SetupContext,
- } from './component'
- import type {
- ComponentObjectPropsOptions,
- ComponentPropsOptions,
- ExtractDefaultPropTypes,
- ExtractPropTypes,
- } from './componentProps'
- import type { EmitsOptions, EmitsToProps } from './componentEmits'
- import { extend, isFunction } from '@vue/shared'
- import type { VNodeProps } from './vnode'
- import type {
- ComponentPublicInstanceConstructor,
- CreateComponentPublicInstance,
- } from './componentPublicInstance'
- import type { SlotsType } from './componentSlots'
- export type PublicProps = VNodeProps &
- AllowedComponentProps &
- ComponentCustomProps
- type ResolveProps<PropsOrPropOptions, E extends EmitsOptions> = Readonly<
- PropsOrPropOptions extends ComponentPropsOptions
- ? ExtractPropTypes<PropsOrPropOptions>
- : PropsOrPropOptions
- > &
- ({} extends E ? {} : EmitsToProps<E>)
- export type DefineComponent<
- PropsOrPropOptions = {},
- RawBindings = {},
- D = {},
- C extends ComputedOptions = ComputedOptions,
- M extends MethodOptions = MethodOptions,
- Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
- Extends extends ComponentOptionsMixin = ComponentOptionsMixin,
- E extends EmitsOptions = {},
- EE extends string = string,
- PP = PublicProps,
- Props = ResolveProps<PropsOrPropOptions, E>,
- Defaults = ExtractDefaultPropTypes<PropsOrPropOptions>,
- S extends SlotsType = {},
- > = ComponentPublicInstanceConstructor<
- CreateComponentPublicInstance<
- Props,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- PP & Props,
- Defaults,
- true,
- {},
- S
- >
- > &
- ComponentOptionsBase<
- Props,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE,
- Defaults,
- {},
- string,
- S
- > &
- PP
- export type DefineSetupFnComponent<
- P extends Record<string, any>,
- E extends EmitsOptions = {},
- S extends SlotsType = SlotsType,
- Props = P & EmitsToProps<E>,
- PP = PublicProps,
- > = new (
- props: Props & PP,
- ) => CreateComponentPublicInstance<
- Props,
- {},
- {},
- {},
- {},
- ComponentOptionsMixin,
- ComponentOptionsMixin,
- E,
- PP,
- {},
- false,
- {},
- S
- >
- // defineComponent is a utility that is primarily used for type inference
- // when declaring components. Type inference is provided in the component
- // options (provided as the argument). The returned value has artificial types
- // for TSX / manual render function / IDE support.
- // overload 1: direct setup function
- // (uses user defined props interface)
- export function defineComponent<
- Props extends Record<string, any>,
- E extends EmitsOptions = {},
- EE extends string = string,
- S extends SlotsType = {},
- >(
- setup: (
- props: Props,
- ctx: SetupContext<E, S>,
- ) => RenderFunction | Promise<RenderFunction>,
- options?: Pick<ComponentOptions, 'name' | 'inheritAttrs'> & {
- props?: (keyof Props)[]
- emits?: E | EE[]
- slots?: S
- },
- ): DefineSetupFnComponent<Props, E, S>
- export function defineComponent<
- Props extends Record<string, any>,
- E extends EmitsOptions = {},
- EE extends string = string,
- S extends SlotsType = {},
- >(
- setup: (
- props: Props,
- ctx: SetupContext<E, S>,
- ) => RenderFunction | Promise<RenderFunction>,
- options?: Pick<ComponentOptions, 'name' | 'inheritAttrs'> & {
- props?: ComponentObjectPropsOptions<Props>
- emits?: E | EE[]
- slots?: S
- },
- ): DefineSetupFnComponent<Props, E, S>
- // overload 2: object format with no props
- // (uses user defined props interface)
- // return type is for Vetur and TSX support
- export function defineComponent<
- Props = {},
- RawBindings = {},
- D = {},
- C extends ComputedOptions = {},
- M extends MethodOptions = {},
- Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
- Extends extends ComponentOptionsMixin = ComponentOptionsMixin,
- E extends EmitsOptions = {},
- EE extends string = string,
- S extends SlotsType = {},
- I extends ComponentInjectOptions = {},
- II extends string = string,
- >(
- options: ComponentOptionsWithoutProps<
- Props,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE,
- I,
- II,
- S
- >,
- ): DefineComponent<
- Props,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE,
- PublicProps,
- ResolveProps<Props, E>,
- ExtractDefaultPropTypes<Props>,
- S
- >
- // overload 3: object format with array props declaration
- // props inferred as { [key in PropNames]?: any }
- // return type is for Vetur and TSX support
- export function defineComponent<
- PropNames extends string,
- RawBindings,
- D,
- C extends ComputedOptions = {},
- M extends MethodOptions = {},
- Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
- Extends extends ComponentOptionsMixin = ComponentOptionsMixin,
- E extends EmitsOptions = {},
- EE extends string = string,
- S extends SlotsType = {},
- I extends ComponentInjectOptions = {},
- II extends string = string,
- Props = Readonly<{ [key in PropNames]?: any }>,
- >(
- options: ComponentOptionsWithArrayProps<
- PropNames,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE,
- I,
- II,
- S
- >,
- ): DefineComponent<
- Props,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE,
- PublicProps,
- ResolveProps<Props, E>,
- ExtractDefaultPropTypes<Props>,
- S
- >
- // overload 4: object format with object props declaration
- // see `ExtractPropTypes` in ./componentProps.ts
- export function defineComponent<
- // the Readonly constraint allows TS to treat the type of { required: true }
- // as constant instead of boolean.
- PropsOptions extends Readonly<ComponentPropsOptions>,
- RawBindings,
- D,
- C extends ComputedOptions = {},
- M extends MethodOptions = {},
- Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
- Extends extends ComponentOptionsMixin = ComponentOptionsMixin,
- E extends EmitsOptions = {},
- EE extends string = string,
- S extends SlotsType = {},
- I extends ComponentInjectOptions = {},
- II extends string = string,
- >(
- options: ComponentOptionsWithObjectProps<
- PropsOptions,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE,
- I,
- II,
- S
- >,
- ): DefineComponent<
- PropsOptions,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE,
- PublicProps,
- ResolveProps<PropsOptions, E>,
- ExtractDefaultPropTypes<PropsOptions>,
- S
- >
- // implementation, close to no-op
- /*! #__NO_SIDE_EFFECTS__ */
- export function defineComponent(
- options: unknown,
- extraOptions?: ComponentOptions,
- ) {
- return isFunction(options)
- ? // #8326: extend call and options.name access are considered side-effects
- // by Rollup, so we have to wrap it in a pure-annotated IIFE.
- /*#__PURE__*/ (() =>
- extend({ name: options.name }, extraOptions, { setup: options }))()
- : options
- }
|