在 vue.js 中,父组件包含子组件,通过 props 和 slots 进行通信。注册父组件,在模板中插入子组件占位符 (slot),并传递 props。父组件可传递数据给子组件,子组件可触发事件,父组件监听并处理。
Vue 父组件:使用指南
在 Vue.js 中,父组件是包含一个或多个子组件的组件。子组件通过 props 与父组件进行通信,而父组件则通过 slots 来控制子组件的呈现方式。
如何使用父组件
在 Vue template 中使用父组件,遵循以下步骤:
- 注册父组件:在 Vue 实例的 components 选项中,注册父组件。
- 创建父组件模板:父组件模板负责定义子组件的容器和占位符。
- 使用插槽:在父组件模板中,使用插槽 () 将子组件内容插入到父组件中。
- 传递 props:父组件将 props 传递给子组件,以配置子组件的行为。
示例
// ParentComponent.<a style="color:#f60; text-decoration:underline;" href="https://www.php.cn/zt/15721.html" target="_blank">vue</a> <template><p> <slot></slot><!-- 占位符,接收子组件内容 --> </p> </template>
登录后复制
// ChildComponent.vue <template><h1>我是子组件</h1> </template>
登录后复制
// App.vue <template><parentcomponent><childcomponent></childcomponent><!-- 插入子组件 --></parentcomponent></template>
登录后复制
传递 props
父组件可以通过 props 向子组件传递数据。在父组件中,使用 v-bind 绑定 props 到子组件:
// ParentComponent.vue <template><childcomponent :message="message"></childcomponent></template>
登录后复制
在子组件中,声明 props 并使用 :propName 语法访问父组件传递的值:
// ChildComponent.vue <script> export default { props: ['message'] } </script><template><h1>{{ message }}</h1> </template>
登录后复制
事件处理
子组件可以向父组件触发事件。在子组件中,使用 $emit 方法触发事件:
// ChildComponent.vue <script> export default { methods: { clickHandler() { this.$emit('child-click') // 触发 child-click 事件 } } } </script><template><button>点击我</button> </template>
登录后复制
在父组件中,使用 v-on 监听子组件触发的事件:
// ParentComponent.vue <template><childcomponent></childcomponent></template>
登录后复制
以上就是vue父组件怎么用的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:pansz,转转请注明出处:https://www.dingdanghao.com/article/505674.html