简体中文
外观
稳定
简化 emits 的定义。
emits
在 Vue >= 3.3 中,此功能将默认关闭。
使用 ShortEmits 或简写为 SE,可以使用元组或方法定义。
ShortEmits
SE
<script setup lang="ts"> const emits = defineEmits<{ // 元组 'update:modelValue': [val: string] // 方法 update(val: string): void }>() </script>