Last active
August 29, 2015 14:21
-
-
Save oshliaer/73abdbe6fd1d604749dc to your computer and use it in GitHub Desktop.
Binding to properties two-way two-way binding #polymer #0.9 #binding
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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