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 还可以和内嵌的组件实例属性进行绑定,案例请查看双向数据绑定;