Vueconf.US · The official Vue.js conf · Tampa, USA · 19-21 May 2025CertificationDiscord ChatThe Documentary
this.$nextTick()
A type helper for defining a Vue component with type inference.
Type
/ options syntax
function defineComponent(
component: ComponentOptions
): ComponentConstructor
/ function syntax (requires 3.3+)
function defineComponent(
setup: ComponentOptions['setup'],
extraOptions?: ComponentOptions
): () => any
Type is simplified for readability.
Details
The first argument expects a component options object. The return value will be the same options object, since the function is essentially a runtime no-op for type inference purposes only.
Note that the return type is a bit special: it will be a constructor type whose instance type is the inferred component instance type based on the options. This is used for type inference when the returned type is used as a tag in TSX.
You can extract the instance type of a component (equivalent to the type of this
in its options) from the return type of defineComponent()
like this:
const Foo = defineComponent(/* ... */)
type FooInstance = InstanceType<typeof Foo>
defineComponent()
also has an alternative signature that is meant to be used with the Composition API and render functions or JSX.
Instead of passing in an options object, a function is expected instead. This function works the same as the Composition API setup()
function: it receives the props and the setup context. The return value should be a render function - both h()
and JSX are supported:
import { ref, h } from 'vue'
const Comp = defineComponent(
(props) => {
/ use Composition API here like in <script setup>
const count = ref(0)
return () => {
/ render function or JSX
return h('div', count.value)
}
},
/ extra options, e.g. declare props and emits
{
props: {
/* ... */
}
}
)
The main use case for this signature is with TypeScript (and in particular with TSX), as it supports generics:
const Comp = defineComponent(
<T extends string | number>(props: { msg: T; list: T[] }) => {
/ use Composition API here like in <script setup>
const count = ref(0)
return () => {
/ render function or JSX
return <div>{count.value}</div>
}
},
/ manual runtime props declaration is currently still needed.
{
props: ['msg', 'list']
}
)
In the future, we plan to provide a Babel plugin that automatically infers and injects the runtime props (like for defineProps
in SFCs) so that the runtime props declaration can be omitted.
Because defineComponent()
is a function call, it could look like it would produce side-effects to some build tools, e.g. webpack. This will prevent the component from being tree-shaken even when the component is never used.
To tell webpack that this function call is safe to be tree-shaken, you can add a /*#__PURE__*/
comment notation before the function call:
export default /*#__PURE__*/ defineComponent(/* ... */)
Note this is not necessary if you are using Vite, because Rollup (the underlying production bundler used by Vite) is smart enough to determine that defineComponent()
is in fact side-effect-free without the need for manual annotations.
See also Guide - Using Vue with TypeScript
Define an async component which is lazy loaded only when it is rendered. The argument can either be a loader function, or an options object for more advanced control of the loading behavior.
Type
function defineAsyncComponent(
source: AsyncComponentLoader | AsyncComponentOptions
): Component
type AsyncComponentLoader = () => Promise<Component>
interface AsyncComponentOptions {
loader: AsyncComponentLoader
loadingComponent?: Component
errorComponent?: Component
delay?: number
timeout?: number
suspensible?: boolean
onError?: (
error: Error,
retry: () => void,
fail: () => void,
attempts: number
) => any
}
See also Guide - Async Components