Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the method for Vue sub-components to access parent component data

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

本篇内容主要讲解"Vue中子组件访问父组件数据的方法是什么",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"Vue中子组件访问父组件数据的方法是什么"吧!

props

官方解释:所有的 prop 都使得其父子 prop 之间形成了一个单向下行绑定:父级 prop 的更新会向下流动到子组件中,但是反过来则不行。这样会防止从子组件意外变更父级组件的状态,从而导致你的应用的数据流向难以理解。

我们可以这样理解,当父级组件的数据发生改变的时候,子级组件接受的数据也会自动发生改变,但子级组件改变的数据不能对父级数据进行影响这也就是单向下行绑定。

但子组件不能直接引用父组件中的数据。我们需要进行引用。

子组件对父组件的数据引用

我们以两个 vue 界面为例

父组件为 HomeComponent,子组件为 TopArticles。

HomeComponent.vue

export default { name: "HomeComponents", components: {TopCoders, TopArticles, ComingCompetitions, TopNews}, data() { return { topArticle:[ { title:'title1', url:'url1', author:'author1' }, { title:'title2', url:'url2', author:'author2' } ], } }}

HomeComponent 在引用子组件的时候需要向子组件传递绑定数据。即 :top-articles="topArticle"

HomeComponent.vue

data 中的 topArticle 为 topArticle 界面中需要引用的父级组件的数据。

指定数据的类型

topArticles.vue

export default { name: "topArticle", props: { topArticles: { // 指定类型 Type: Array, required: true }, },}

数据展示

topArticles.vue

{{item.title}} {{item.author}}

效果展示

到此,相信大家对"Vue中子组件访问父组件数据的方法是什么"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report