vue3父组件给子组件的参数赋值
时间: 2023-10-19 14:21:45 浏览: 89
在Vue3中,父组件可以通过子组件的props属性向子组件传递参数。在父组件中,可以通过v-bind指令绑定props属性的值,从而向子组件传递参数。例如:
```html
<template>
<div>
<child-component :message="msg"></child-component>
</div>
</template>
<script>
import ChildComponent from './ChildComponent.vue';
export default {
components: {
ChildComponent
},
data() {
return {
msg: "Hello from parent component"
};
}
}
</script>
```
在上述代码中,父组件中的`msg`数据被通过v-bind指令绑定到了子组件的`message`属性上。子组件中可以通过props来接收这个参数,例如:
```html
<template>
<div>
<p>{{ message }}</p>
</div>
</template>
<script>
export default {
props: {
message: String
}
}
</script>
```
在子组件中,我们通过props属性定义了一个`message`属性,用于接收父组件传递过来的参数。在模板中,我们直接使用了这个参数来显示父组件传递过来的数据。
阅读全文