vue的. sync修饰符

使用. 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

原文地址:https://www.cnblogs.com/baixinL/p/14291804.html