can
Version:
MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.
19 lines (12 loc) • 363 B
Markdown
String} can.mustache.key key
can.mustache.types
A key references a value within the current [can.mustache.context context] of a
template being rendered. In the following example, the
key is `name`:
<h1>{{name}}</h1>
If this template is rendered with:
{
name: "Austin"
}
The template writes out:
<h1>Austin</h1>
{