1,可以引用元素,通过this.$refs.domxx直接操作元素。
<div ref="domxx"></div> methods: { getxx() { console.log(this.$refs.domxx) // 访问DOM元素 } }
2,可以绑定组件实例,访问组件的属性和方法;
参考地址:(22条消息) Vue中ref的用法_我心向阳.的博客-CSDN博客
Template Refs | Vue.js (vuejs.org)
标签:domxx,vue,refs,用法,Vue,ref From: https://www.cnblogs.com/Tpf386/p/17576611.html