| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- import {
- ComputedOptions,
- MethodOptions,
- ComponentOptionsWithoutProps,
- ComponentOptionsWithArrayProps,
- ComponentOptionsWithObjectProps,
- ComponentOptionsMixin,
- RenderFunction,
- ComponentOptionsBase
- } from './componentOptions'
- import {
- SetupContext,
- AllowedComponentProps,
- ComponentCustomProps
- } from './component'
- import {
- ExtractPropTypes,
- ComponentPropsOptions,
- ExtractDefaultPropTypes
- } from './componentProps'
- import { EmitsOptions, EmitsToProps } from './componentEmits'
- import { isFunction } from '@vue/shared'
- import { VNodeProps } from './vnode'
- import {
- CreateComponentPublicInstance,
- ComponentPublicInstanceConstructor
- } from './componentPublicInstance'
- export type PublicProps = VNodeProps &
- AllowedComponentProps &
- ComponentCustomProps
- 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 = Record<string, any>,
- EE extends string = string,
- PP = PublicProps,
- Props = Readonly<ExtractPropTypes<PropsOrPropOptions>> & EmitsToProps<E>,
- Defaults = ExtractDefaultPropTypes<PropsOrPropOptions>
- > = ComponentPublicInstanceConstructor<
- CreateComponentPublicInstance<
- Props,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- PP & Props,
- Defaults,
- true
- > &
- Props
- > &
- ComponentOptionsBase<
- Props,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE,
- Defaults
- > &
- PP
- // 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, RawBindings = object>(
- setup: (
- props: Readonly<Props>,
- ctx: SetupContext
- ) => RawBindings | RenderFunction
- ): DefineComponent<Props, RawBindings>
- // 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 = EmitsOptions,
- EE extends string = string
- >(
- options: ComponentOptionsWithoutProps<
- Props & EmitsToProps<E>,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE
- >
- ): DefineComponent<Props, RawBindings, D, C, M, Mixin, Extends, E, EE>
- // 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 = Record<string, any>,
- EE extends string = string
- >(
- options: ComponentOptionsWithArrayProps<
- PropNames,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE
- >
- ): DefineComponent<
- Readonly<{ [key in PropNames]?: any }>,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE
- >
- // 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 = Record<string, any>,
- EE extends string = string
- >(
- options: ComponentOptionsWithObjectProps<
- PropsOptions,
- RawBindings,
- D,
- C,
- M,
- Mixin,
- Extends,
- E,
- EE
- >
- ): DefineComponent<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE>
- // implementation, close to no-op
- export function defineComponent(options: unknown) {
- return isFunction(options) ? { setup: options, name: options.name } : options
- }
|