template
{renderer(data, helpers) | String}
Provides a template to render directly within the component's tag. The template is rendered with the
component's viewModel. <content>
elements within the template are replaced by
the source elements within the component's tag.
Use
The template specified by the
template
property works similar to the W3C Shadow DOM proposal. It represents the contents of a custom element, while being able to reposition the user provided source elements with the<content>
tag.There are three things to understand about a can.Component's template:
<content>
tags within the template act as insertion points for the source elements.The following example demonstrates all three features:
The following explains how each part works:
can.Component:
This registers a component for elements like
<my-greeting>
. Its template will place an<h1>
element directly within<my-greeting>
and put the original contents of<my-greeting>
within the<h1>
. The component's viewModel adds a title value.Source template:
The source template is the template that uses
<my-greeting>
. In the demo, this is defined within a<script>
tag.Notice:
<my-greeting>
.site
andtitle
value.Source data:
This is how we render the source template that uses
<my-greeting>
. The template is rendered withsite
in its [can.view.viewModel].HTML Result:
This is the result of the template transformations. The content within the original
<my-greeting>
is placed within the<h1>
tag. Also, notice that the original content is able to access data from the source data and from the component's viewModel.The following sections break this down more.
Template insertion
The template specified by template is rendered directly withing the custom tag.
For example the following component:
With the following source html:
Produces the following html:
However, if there was existing content within the source html, like:
that content is removed, and replaced by the component's template:
The
<content>
elementUse the
<content>
element to place the source content in the component's element within the component's template. For example, if we change the component to look like:and rendered with source html, like:
it produces:
<content>
element default contentIf the user does not provide source content, the html between the
<content>
tags will be used. For example, if we change the component to look like:and rendered with source html like:
it produces: