Vue3 emit使用
2022-09-15 本文已影响0人
Spinach
父组件:
①定义函数
②使用子组件时使用该函数
const fatherFn = (参数:接收子组件传递的数据) =>{
函数体...
}
<Child @fatherFn ="fatherFn " />
子组件:
①子组件引入defineEmits
②赋值给emit
③触发
import { defineEmits} from 'vue';
const emit = defineEmits(['fatherFn ']);
//触发
emit('fatherFn ', {参数:传递给父组件的数据});