Despite props and events, sometimes you still need to access child components directly in JavaScript. To do this, you can use ref to assign a reference ID to the child component. ref specifies a reference ID for the child component, so that the parent component can directly access the data in the child component through ref This.$refs.outsideComponentRef can directly locate ref="outsideComponentRef" and return the instantiated object 1. Ref is used on external components<div id="app"> <component-father ref="outsideComponentRef"></component-father> </div> <script> var refoutsidecomponentTem = { template: "<div class='childComp'><h5>{{test}}</h5></div>", data(){ return { test:'I am a child component' } } }; new Vue({ el: "#app", components: "component-father": refoutsidecomponentTem }, mounted:function () { console.log(this); // #app vue instance console.log(this.$refs.outsideComponentRef); // VueComponent vue instance console.log(this.$refs.outsideComponentRef.test); // 'I am a child component' } }); </script> 2. Ref is used on external elements<div id="app"> <component-father></component-father> <p ref="outsideComponentRef">p tag</p> </div> <script> var refoutsidecomponentTem = { template: "<div class='childComp'><h5>{{test}}</h5></div>", data(){ return { test:'I am a child component' } } }; new Vue({ el: "#app", components: "component-father": refoutsidecomponentTem }, mounted:function () { console.log(this.$refs.outsideComponentRef); // Returns "<p>p标签</p>" object} }); </script> This is the end of this article about the detailed case study of Vue.js $refs usage. For more relevant Vue.js $refs usage content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Implementation of installing and uninstalling CUDA and CUDNN in Ubuntu
>>: Detailed analysis of the principles and usage of MySQL views
Statistics of QPS values in the last N seconds ...
The textarea tag size is immutable Copy code The c...
MySql uses joined table queries, which may be dif...
This article example shares the specific code of ...
Table of contents 1. Install node 2. Install Comm...
The custom encapsulation code of the vue button c...
Preface The requirement implemented in this artic...
This article shares the installation tutorial of ...
Table of contents 1. Stored Procedure 1.1. Basic ...
Table of contents 1. Basics 2. Nodes, trees, and ...
Here we introduce the knowledge about form elemen...
Today I will share with you how to write a player...
Introduction to temporary tables What is a tempor...
Table of contents Install Docker on CentOS 8 1. U...
Html semantics seems to be a commonplace issue. G...