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.
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:
@customElement('my-element')
exportclassMyElementextendsLitElement {
@property() greeting="Welcome";
@property() name="Sally";
@property({type: Boolean}) emphatic=true;
//...
}
The @customElement decorator defines a custom element, equivalent to calling:
customElements.define('my-element', MyElement);
The @property decorator declares a reactive property.
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 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.
"experimentalDecorators": true,
"useDefineForClassFields": false,
Enabling emitDecoratorMetadata is not required and not recommended.
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:
"assumptions": {
"setPublicClassFields": true
},
"plugins": [
["@babel/plugin-proposal-decorators", {
"version": "2018-09",
"decoratorsBeforeExport": true
}],
["@babel/plugin-proposal-class-properties"]
]
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.
When using TypeScript with Babel, it's important to order the TypeScript transform before the decorators transform in your Babel config as follows:
{
"assumptions": {
"setPublicClassFields": true
},
"plugins": [
["@babel/plugin-transform-typescript", {
"allowDeclareFields": true
}],
["@babel/plugin-proposal-decorators", {
"version": "2018-09",
"decoratorsBeforeExport": true
}],
["@babel/plugin-proposal-class-properties"]
]
}
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,
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.