I have the following element:
我有以下元素:
<link rel="import" href="/go.html?url=../my-control/my-control.html" />
<dom-module id="my-page">
<template>
<!-- pass the value down to the children element -->
<my-control my-property="{{myProperty}}"></my-control>
</template>
<script>
Polymer({
is: 'my-page',
properties: {
myProperty: {
type: String,
value: '',
reflectToAttribute: true
}
}
});
</script>
</dom-module>
<link