vue3子组件接受父组件的传值
时间: 2023-09-19 08:06:30 浏览: 89
在Vue3中,子组件通过props来接收父组件传递的值。首先,在父组件中使用冒号绑定语法将变量传递给子组件。例如,在父组件的template标签中,使用`:变量名="传递的值"`来传递值。然后,在子组件中使用`defineProps`函数定义props,并通过`toRefs`函数来解构props中的值,以便在setup语法糖中使用。下面是一个示例:
```html
<!-- 父组件 -->
<template>
<div class="hello">
我是父组件
<!-- 父组件通过:变量(这里是info)绑定值 -->
<Child :info="parentMsg"></Child>
</div>
</template>
<script setup>
import Child from './Child'
import { ref } from 'vue'
const parentMsg = ref('父组件传递的值')
</script>
<!-- 子组件 -->
<template>
<!-- 使用父组件传递过来的值 -->
<div>我是子组件,接收到的值是{{ info }}</div>
</template>
<script setup>
import { toRefs, defineProps } from 'vue'
const props = defineProps({
// 子组件接收父组件传递过来的值
info: String,
})
// 使用父组件传递过来的值
const { info } = toRefs(props)
</script>
```
通过以上代码,子组件就可以接收到来自父组件的传值了。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [vue3-setup语法糖 - 父子组件之间的传值](https://blog.csdn.net/weixin_48927323/article/details/125486312)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *3* [vue 子组件向父组件传值方法](https://download.csdn.net/download/weixin_38691739/12763180)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文