继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

33.$refs、$parent、$children使用

幕布斯6054654
关注TA
已关注
手记 1301
粉丝 219
获赞 1011

1、ref为子组件指定一个索引名称,通过索引来操作子组件;
2、this.$parent 可以直接访问该组件的父实例或组件;
3、父组件也可以通过this.$children 访问它所有的子组件,
$parent和$children 可以递归向上或向下无线访问, 直到根实例或最内层的组件。

案例

index.vue

<template><div>
  <testVue ref="childVue"></testVue>  <br/><br/>
  <testVue2></testVue2> <br/><br/>
  <button @click="clickChild1">点击访问子组件</button> <br/><br/>
  <button @click="clickChild2">点击访问子组件2</button></div></template><script>import testVue from './testVue'import testVue2 from './testVue2'export default {
  data(){    return {      total: 0
    }
  },  methods: {
    clickChild1(){      console.log(this.$refs.childVue.counter);
    },
    clickChild2(){       console.log(this.$children[1].testval);
    }
  },  components: {
    testVue,
    testVue2  
  }
}</script>

test.vue

<template><div>
  <button @click="parentClick">点击访问父组件</button></div></template><script>export default {
  data(){    return {      counter: 0
    }
  },  methods: {
    parentClick(){       console.log(this.$parent.total);
    }
  }
}</script>

test2.vue

<template><div></div></template><script>export default {
  data(){    return {      testval: '2222'
    }
  }
}</script>



作者:圆梦人生
链接:https://www.jianshu.com/p/69563148583d


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP