如果项目很大,组件很多,怎么样才能准确的、快速的寻找到我们想要的组件了??

  1. $refs
    首先你的给子组件做标记。demo :<firstchild ref="one"></firstchild>
    然后在父组件中,通过this.$refs.one就可以访问了这个自组件了,包括访问自组件的data里面的数据,调用它的函数
    注意
    ref 被用来给元素或子组件注册引用信息。引用信息将会注册在父组件的 $refs 对象上。如果在普通的 DOM 元素上使用,引用指向的就是 DOM 元素; 如果用在子组件上,引用就指向组件实例
    当 v-for 用于元素或组件的时候,引用信息将是包含 DOM 节点或组件实例的数组

  2. $children
      他返回的是一个组件集合,如果你能清楚的知道子组件的顺序,你也可以使用下标来操作;

3.$parent在子组件中调用父组件的方法或获得其数据

parents.vue

<template>
<div id='parents'>
<p>我是父组件
<button @click="click1hanlde">获取子组件1的数据与方法</button>
<button @click="click2hanlde">获取所有子组件的数据和方法</button></p>
<childCom1 ref="childCom1"></childCom1>
<childCom2 ref="childCom2"></childCom2>
</div>
</template>
<script>
import childCom1 from './childCom1.vue'
import childCom2 from './childCom2.vue'
export default {
components:{
childCom1, childCom2
},
data() {
return {
ParentData:'AAA'
};
},
methods:{
click1hanlde(){
console.log(this.$refs.childCom1.children_data);//children_data1
this.$refs.childCom1.children_fun();
},
click2hanlde(){
for(let i=;i<this.$children.length;i++){
// console.log(this.$children.length);//2个组件 childCom1 childCom2
console.log(this.$children[i].children_data); //children_data2
this.$children[i].children_fun();
}
},
showParentData(){
console.log(this.ParentData)
}
}
};
</script>

childCom1.vue

<template>
<div id='children1'>
<p>我是子组件1: <button @click="getParent_fun">获取父组件的数据和方法 </button></p>
</div>
</template>
<script>
export default {
data() {
return {
children_data:'children_data1',
};
},
methods:{
children_fun(){
console.log('我是子组件1的方法')
},
getParent_fun(){
this.$parent.showParentData();
}
}
};
</script>

childCom2.vue

<template>
<div id='children2'>
<p>我是子组件2</p>
</div>
</template>
<script>
export default {
data() {
return {
children_data:'children_data2',
};
},
methods:{
children_fun(){
console.log('我是子组件2的方法')
}
}
};
</script>

最新文章

  1. 多线程 异步 beginInvoke EndInvoke 使用
  2. Linux系统用户和用户组介绍
  3. 【poj3270】 Cow Sorting
  4. lintcode 最长上升连续子序列 II(二维最长上升连续序列)
  5. 2015元旦来个炫的html5特效
  6. 【思路】-jscode
  7. python3-day2-python基础2
  8. IOS面试题总结
  9. select into from 提示 Undeclared variable.....错误的解决办法 && select into from 和 insert into select 的用法和区别
  10. 为什么socket编程要用到多线程
  11. POJ 2446 Chessboard (二分图最大匹配)
  12. 关于帝国cms 列表页SEO优化的问题
  13. swf上传
  14. Angular - - ngIf、ngSwitch、ngHide/ngShow
  15. struts2 Action获取表单传值(属性,类))
  16. Java中的各种bean对应的意义(VO,PO,BO,QO, DAO,POJO,DTO)
  17. 虚机配置vip命令行配置
  18. 【HDU1693】Eat the Trees(插头dp)
  19. jQuery 学习笔记(2)(jQuery静态方法)
  20. 33、iOS10 由于权限问题导致崩溃的大坑

热门文章

  1. Python调用百度地图API实现批量经纬度转换为实际省市地点(api调用,json解析,excel读取与写入)
  2. 题解【AcWing95】费解的开关
  3. Linux运维---16. Kolla部署OpenStack外接rabbit集群
  4. 使用python 写一个 股票涨跌提醒功能
  5. LED And Incandescent, Who Is Suitable For Holiday Lighting?
  6. Spring boot unable to determine jdbc url from datasouce
  7. oracle三个网络配置文件(listener.ora、tnsname.ora、sqlnet.ora)的作用
  8. ArcMap空间参考警告窗口关了怎么重新打开
  9. QQ第三方登录(二)
  10. python中使用anaconda对不平衡数据的处理包imblearn的安装