如何獲取dom?
固然是咱們的refs方法啦
有兩種具體的使用方法
第一種:使用this.$refs.綁定咱們設置的名字,放在methods裏獲取
第二種:使用e.target方法dom
具體事例:this
<div class=「a」 ref=「ok」>a</div> <script>裏的methods methods:{ a:function(){ var getOk = this.$refs.ok.innerText; console.log(getOk);//a } 另一種 methods:{ a:function(0{ var el = e.target; console.log(el); //<div class=「a」 >a</div> }