You're viewing docs for an older version of Lit. Click here for the latest version.

Decorators

Decorators are special functions that can modify the behavior of classes, class methods, and class fields. Lit uses decorators to provide declarative APIs for things like registering elements, reactive properties, and queries.

Decorators are a stage 3 proposal for addition to the ECMAScript standard. Currently no browsers implement decorators, but compilers like Babel and TypeScript provide support for an earlier version of the decorators proposal. Lit decorators work with Babel and TypeScript, and will be updated to work with the final specification when it's implemented in browsers.

See the Enabling decorators section for more information.

What does stage 3 mean?

Stage 3 means that the specification text is complete, and ready for browsers to implement. Once the specification has been implemented in multiple browsers, it can move to the final stage, stage 4, and be added to the ECMAScript standard. A stage 3 proposal can still change, but only if critical issues are discovered during implementation.

Lit supplies a set of decorators that reduce the amount of boilerplate code you need to write when defining a component. For example, the @customElement and @property decorators make a basic element definition more compact:

The @customElement decorator defines a custom element, equivalent to calling:

The @property decorator declares a reactive property.

See Reactive properties for more information about configuring properties.

DecoratorSummaryMore Info
@customElementDefines a custom elementAbove
@eventOptionsAdds event listener options.Events
@propertyDefines a public property.Properties
@stateDefines a private state propertyProperties
@queryDefines a property that returns an element in the component template.Shadow DOM
@queryAllDefines a property that returns a list of elements in the component template.Shadow DOM
@queryAsyncDefines a property that returns a promise that resolves to an element in the component template.Shadow DOM
@queryAssignedElementsDefines a property that returns the child elements assigned to a specific slot.Shadow DOM
@queryAssignedNodesDefines a property that returns the child nodes assigned to a specific slot.Shadow DOM

You can import all the lit decorators via the lit/decorators.js module:

To reduce the amount of code needed to run the component, decorators can be imported individually into component code. All decorators are available at lit/decorators/<decorator-name>.js. For example,

To use decorators, you need to build your code with a compiler such as TypeScript or Babel.

In the future when decorators become a native web platform feature, this may no longer be necessary.

To use decorators with TypeScript, enable the experimentalDecorators compiler option.

You should also ensure that the useDefineForClassFields setting is false. Note, this should only be required when the target is set to esnext or greater, but it's recommended to explicitly ensure this setting is false.

Enabling emitDecoratorMetadata is not required and not recommended.

If you're compiling JavaScript with Babel, you can enable decorators by adding the following plugins and settings:

Note, the @babel/plugin-proposal-class-properties may not be required with the latest versions of Babel.

To set up the plugins, add code like this to your Babel configuration:

Babel decorator support has been tested with version: '2018-09'. This is currently the default, but we recommend setting the version explicitly in case the default changes. Other versions ('2021-12' or 'legacy') are not supported, but this may change as Babel evolves. See the Babel documentation if you want to experiment.

Using decorators with TypeScript and Babel

Permalink to “Using decorators with TypeScript and Babel”

When using TypeScript with Babel, it's important to order the TypeScript transform before the decorators transform in your Babel config as follows:

The allowDeclareFields setting is generally not needed, but it can be useful if you want to define a reactive property without using a decorator. For example,

Avoiding issues with class fields and decorators

Permalink to “Avoiding issues with class fields and decorators”

Class fields have a problematic interaction with declaring reactive properties. See Avoiding issues with class fields when declaring properties for more information.

The current decorators stage 3 proposal does not directly address this issue, but it should be solved as the proposal evolves and matures.

When using decorators, transpiler settings for Babel and TypeScript must be configured correctly as shown in the sections above for TypeScript and Babel.