sync
sync構文を使用してコンポーネントに双方向データバインディングを設定
<template component>
<input type="text" sync:value="txt" />
<br>
render txt: {{txt}}
<script>
export default {
tag:"sync-render",
data:{
txt:"I am txt"
},
};
</script>
</template>
sync は、埋め込まれたコンポーネントのインスタンスプロパティともバインドできます。具体例については、双方向データバインディング をご覧ください。