Pushing out change()es using a veneer tag's subscribed attrib
Example 1 - <veneer-item> to <veneer-mustache> syncing options
Example Data Source (a simple form)
Name
Age
Male
Updated via
subscribed
attribute on <veneer-item>
{{name}}
is {{age}} years old.
Updated via 2 second polling from
interval
attribute on template
{{name}}
is {{age}} years old.
Updated manually via calling
change()
method on template
Apply Update
{{name}}
is {{age}} years old.
Updated nevermore because of
static
attribute on template
Apply Update
{{name}}
is {{age}} years old.
Init/update manually via
render(data)
method on template (no
object
attribute on template)
Apply Update
{{name}}
is {{age}} years old.
Example 2 - <veneer-dateinput> to page title via <veneer-timer>