美文网首页
vue $refs的基本用法

vue $refs的基本用法

作者: xukuangbo_ | 来源:发表于2019-05-23 10:28 被阅读0次
示例代码如下:
<div id = "app">
        <input type="test" ref="inputTemp"/>
        <button @click="add">加入</button>
</div>
<script>
new Vue(  {

        el: "#app",
        methods:{
        add:function(){
                this.$refs.inputTemp.value = "33"
                //this.$refs.inputTemp 减少取dom节点的消耗
                   }
        }
})
</script>

一般都是,获取dom节点,再取inputRemp元素,但是绑定ref之后,直接取值。

相关文章

网友评论

      本文标题:vue $refs的基本用法

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