--
vue2:
內部觸發改變:
this.$emit("update:visible", value);
外部綁定是需要加上.sync修飾符:
:visible.sync="shows"
vue3:
vue3取消了.sync修飾符,通過 @update:show="shows = $event" 改變props的值
內部觸發改變:
emit(update:visible, value)
外部綁定是需要加上@update:show="shows = $event"
:show="shows"
@update:show="shows = $event"
可以簡寫為:
v-module:show="shows"
--