美文网首页
Vue - ref和$refs用法

Vue - ref和$refs用法

作者: 西半球_ | 来源:发表于2021-05-27 16:59 被阅读0次
    <template>
      <div >
        <div ref="text">哈哈</div>
      </div>
    </template>
    
      methods: {
        onClick: function() {
          this.$refs.text.style.color = "red"; //更新样式
          this.$refs.text.innerText = "hahaha"; //更新值
          console.log(this.$refs.text);
        }
      }
    

    相关文章

      网友评论

          本文标题:Vue - ref和$refs用法

          本文链接:https://www.haomeiwen.com/subject/uotjjltx.html