zoukankan      html  css  js  c++  java
  • 脑补 vue中父组件改变子组件中的数据data

    需求:
    在父组件的一个事件可以改变子组件中的 openData 的值变为 true。
    
    废话不多说,直接上代码:
    
    父级页面:
    
    
    <template>
      <div>
        <div @click="changeChild">按钮改变子组件数据</div>
        <children ref="childrenDom"></children>
       </div>
    </template>
     
    <script>
    import Childrens from ".../childrens"
    export default {
    components: {
        Childrens
      },
        methods: {
            changeChild() {
                this.$refs.childrenDom.openData = true
            }
        }
    }
    </script>
    
    注: this.$refs.childrenDom就是指的childrenDom DOM元素
    子组件页面:
    
    <script>
    export default {
        data() {
            openData: false
        }
    }
    </script>
    

      

  • 相关阅读:
    uoj 36 玛里苟斯
    readlink
    Endless Spin
    rm
    rmdir
    [学习笔记]min-max容斥
    cp
    [HAOI2015]按位或
    java实现第四届蓝桥杯公式求值
    java实现第四届蓝桥杯危险系数
  • 原文地址:https://www.cnblogs.com/shaozhu520/p/13825177.html
Copyright © 2011-2022 走看看