這篇文章主要介紹了Vue中$refs的用法,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下
說明:vm.$refs 一個對象,持有已註冊過ref 的所有子元件(或HTML元素)
使用:在HTML元素中,新增ref屬性,然後在JS中透過vm.$refs.屬性來取得
##注意:如果取得的是一個子元件,那麼透過ref就能取得到子元件中的data和methods#
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <!-- <script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script> --> <script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script> <style> </style> </head> <body> <p id="vue_app"> <qinwm ref="vue_qinwm"></qinwm> <p ref="vue_p">Hello, world!</p> <button @click="getRef">getRef</button> </p> </body> </html> <script> Vue.component("qinwm", { template: `<h1>{{msg}}</h1>`, data(){ return { msg: "Hello, world!" }; }, methods:{ func:function (){ console.log("Func!"); } } }); new Vue({ el: "#vue_app", data(){ return {}; }, methods: { getRef () { console.log(this.$refs); console.log(this.$refs.vue_p); // <p>Hello, world!</p> console.log(this.$refs.vue_qinwm.msg); // Hello, world! console.log(this.$refs.vue_qinwm.func); // func:function (){ console.log("Func!"); } this.$refs.vue_qinwm.func(); // Func! } } }); </script>
#
以上是Vue中$refs的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!