vuejs项目开发中如何利用emits
实现父子组件传参,下面web建站小编给大家详细介绍一下实现代码!
父组件代码
<template> <div>父组件:{{ message }}</div> <!-- 自定义 changeMsg 事件 --> <Child @changeMsg="changeMessage" /> </template> <script setup> import { ref } from 'vue' import Child from './components/Child.vue' let message = ref('你好,web建站') // 更改 message 的值,data是从子组件传过来的 function changeMessage(data) { message.value = data } </script>
子组件代码
<template> <div> 子组件:<button @click="handleClick">子组件的按钮</button> </div> </template> <script setup> // 注册一个自定义事件名,向上传递时告诉父组件要触发的事件。 const emit = defineEmits(['changeMsg']) function handleClick() { // 参数1:事件名 // 参数2:传给父组件的值 emit('changeMsg', '我是小白') } </script>
vuejs项目开发如何利用expose/ref实现父子组件传参
上面是“vuejs项目开发如何利用emits实现父子组件传参”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3075.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!