Support for Lit (original) (raw)
Clear and concise description of the problem
Lit templates are written using JavaScript template literals tagged with the html tag. The contents of the literal are mostly plain, declarative, HTML:
static styles = css :host { color: blue; };
render() {
return html<p>Hello, ${this.name}!</p>;
}
https://lit.dev/docs/components/overview/
Suggested solution
I don't know any solution.
Alternative
No response
Additional context
No response
Validations
- Follow our Code of Conduct
- Read the Contributing Guide.
- Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
Contributes
- If this feature request is accepted, I am willing to submit a PR to fix this issue