<Counter bind:count='x'/>
<p>count: {{x}}</p>
<script>
import Counter from './Counter.html';
export default {
components: {
Counter
}
};
</script>