Skip to content

Instantly share code, notes, and snippets.

@oshliaer
Last active August 29, 2015 14:21
Show Gist options
  • Save oshliaer/73abdbe6fd1d604749dc to your computer and use it in GitHub Desktop.
Save oshliaer/73abdbe6fd1d604749dc to your computer and use it in GitHub Desktop.
Binding to properties two-way two-way binding #polymer #0.9 #binding
<link rel="import" href="bower_components/polymer/polymer.html">
<link rel="import" href="bower_components/iron-input/iron-input.html">
<dom-module id="hello-world">
<template>
<h1>Hello <span>{{name}}</span></h1>
<!-- first way -->
<input is="iron-input" bind-value="{{name}}" placeholder="Your name here..."><br/>
<!-- second way -->
<input value="{{name::keyup}}">
</template>
</dom-module>
<script>
Polymer({
is: 'hello-world',
properties: {
name: {
type: String,
value: 'World'
}
}
});
</script>
<!doctype hml>
<html>
<hed>
<link rel="import" href="bower_components/polymer/polymer.html">
<link rel="import" href="hello-world.html">
</hed>
<body>
<hello-world></hello-world>
<hello-world></hello-world>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment