vue中 el [$el] 的理解


<template>
    <div class="a">
         <div class="basic" ref="ba">基本元素</div>
        <chil ref="ccd"></chil>
    </div>
</template>
<script>
    import Chil from '.../chil.vue'
    export default {
        name: 'Ba',
        components: { Chil }
    }
</script>

一个组件里访问基本元素可以用  this.$refs.xxx ,如果要访问子组件要用 this.$refs.xxx.$el

this.$refs.ba.style = "color: red"             ----------          this.$refs.ccd.$el.style = "color: red"

 

 

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。