Skip to content

Instantly share code, notes, and snippets.

@blasten
Last active February 25, 2016 00:17
Show Gist options
  • Select an option

  • Save blasten/6f177a1cba423dd6004c to your computer and use it in GitHub Desktop.

Select an option

Save blasten/6f177a1cba423dd6004c to your computer and use it in GitHub Desktop.
<dom-module id="x-test">
<template>
<div>[[test]]</div>
</template>
<script>
Polymer({
is: 'x-test',
properties: {
test: {
type: String,
value: 'foo'
},
changeTest: {
type: Boolean
}
},
observers: ['_observer(changeTest)'],
_observer: function() {
this.test = 'bar';
}
});
</script>
</dom-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment