父组件
<navBar :onClickRight="onClickRight"></navBar>
setup() {
let onClickRight = () => {
console.log("你好");
};
return {
onClickRight,
};
},
子组件
<van-nav-bar @click-right="onClickRight" />
props: {
onClickRight: {
type: Function,
default: () => {
return Function;
},
},
},
setup(props, { emit, attrs, slots }) {
let { onClickRight } = toRefs(props); // 让props下的count保持活性
},
};