Use HTML Templates
Bind Data in a Template
Bind HTML Classes
Bind Inline Styles
Render HTML Conditionally
Render Lists
Render Multiple Templates
TypeScript (Developer Preview)
Mobile-Ready Components
Develop Secure Code
The power of Lightning Web Components is the templating system, which uses the virtual DOM to render components smartly and efficiently. It’s a best practice to let LWC manipulate the DOM instead of writing JavaScript to do it.
Use a <template> root tag in your HTML template. You can also use nested <template> tags to work with directives.
When working with an HTML template, you can:
See Also