使用. sync
相当于一种简写
<x-component foo.sync="pproperty"></x-component>
<x-component foo="pproperty" @update:foo="val=>pproperty=val"></x-component>
不管以上哪一种,x-component组件应该通过$emit("update:foo",newValue)更新pproperty
使用. sync
相当于一种简写
<x-component foo.sync="pproperty"></x-component>
<x-component foo="pproperty" @update:foo="val=>pproperty=val"></x-component>
不管以上哪一种,x-component组件应该通过$emit("update:foo",newValue)更新pproperty