浅谈Vue.js中ref ($refs)用法举例总结

前端之家收集整理的这篇文章主要介绍了浅谈Vue.js中ref ($refs)用法举例总结前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文介绍了Vue.js中ref ($refs)用法举例总结,分享给大家,具体如下:

看Vue.js文档中的ref部分,自己总结了下ref的使用方法以便后面查阅。

一、ref使用在外面的组件上

HTML 部分

ref在外面的组件上

js部分

我是子组件
" }; var refoutsidecomponent=new Vue({ el:"#ref-outside-component",components:{ "component-father":refoutsidecomponentTem },methods:{ consoleRef:function () { console.log(this); // #ref-outside-component vue实例 console.log(this.$refs.outsideComponentRef); // div.childComp vue实例 } } });

二、ref使用在外面的元素上

HTML部分

JS部分

我是子组件
" }; var refoutsidedom=new Vue({ el:"#ref-outside-dom",components:{ "component-father":refoutsidedomTem },methods:{ consoleRef:function () { console.log(this); // #ref-outside-dom vue实例 console.log(this.$refs.outsideDomRef); //

ref在外面的元素上

} } });

三、ref使用在里面的元素上---局部注册组件

HTML部分

ref在里面的元素上

JS部分

" + "
我是子组件
" + "
",methods:{ consoleRef:function () { console.log(this); // div.childComp vue实例 console.log(this.$refs.insideDomRef); //
我是子组件
} } }; var refinsidedom=new Vue({ el:"#ref-inside-dom",components:{ "component-father":refinsidedomTem } });

四、ref使用在里面的元素上---全局注册组件

HTML部分

JS部分

" + "" + "

ref在里面的元素上--全局注册

" + "
",methods:{ showinsideDomRef:function () { console.log(this); //这里的this其实还是div.insideFather console.log(this.$refs.insideDomRefAll); // var refinsidedomall=new Vue({
el:"#ref-inside-dom-all"
});

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/34632.html
refsrefsrefs用法refs的用法vuevuevuevue.js

猜你在找的Vue相关文章