Vue父子组件间参数如何传递
时间: 2023-10-05 19:04:17 浏览: 93
Vue 父子组件的数据传递、修改和更新方法
在 Vue 中,父组件向子组件传递参数可以通过 props 实现,子组件通过 props 接收父组件传递的参数。具体步骤如下:
1. 在父组件中定义要传递的参数,使用 v-bind 或简写语法 : 绑定到子组件的 props 上。
2. 在子组件中通过 props 接收父组件传递的参数。
下面是一个示例:
父组件:
```
<template>
<div>
<child-component :message="parentMessage"></child-component>
</div>
</template>
<script>
import ChildComponent from './ChildComponent.vue';
export default {
components: {
ChildComponent
},
data() {
return {
parentMessage: '这是父组件传递给子组件的参数'
}
}
}
</script>
```
子组件:
```
<template>
<div>
{{ message }}
</div>
</template>
<script>
export default {
props: ['message']
}
</script>
```
在这个例子中,父组件通过 v-bind 或简写语法 : 将 parentMessage 绑定到了子组件的 message props 上,子组件通过 props 接收了这个参数,并且在模板中渲染了它的值。
阅读全文