different parent components refer to the same child component. Modify the value of the child component in one parent component, while the value of the child component in the other parent component is not modified
child component:
< group >
<popup-picker :data="list" v-model="province" @on-show="onShow" @on-hide="onHide" @on-change="onChange" :columns="list.length"
:show-name="true" value-text-align="left"></popup-picker>
</group>
this component is used in both parent component An and parent component B. I changed the value of provice in component A, but the value of profile in component B did not change