1. Call the parent component method directly through this.$parent.event in the child component<!-- Parent component --> <template> <div> <child></child> </div> </template> <script> import child from '~/components/dam/child'; export default { components: child }, methods: { fatherMethod() { console.log('test'); } } }; </script> <!-- Child Component --> <template> <div> <button @click="childMethod()">Click</button> </div> </template> <script> export default { methods: { childMethod() { this.$parent.fatherMethod(); } } }; </script> 2. Use $emit in the child component to trigger an event to the parent component, and the parent component listens to this event<!-- Parent component --> <template> <div> <child @fatherMethod="fatherMethod"></child> </div> </template> <script> import child from '~/components/dam/child'; export default { components: child }, methods: { fatherMethod() { console.log('test'); } } }; </script> <!-- Child Component --> <template> <div> <button @click="childMethod()">Click</button> </div> </template> <script> export default { methods: { childMethod () { this.$emit('fatherMethod'); } } }; </script> 3. The parent component passes the method to the child component and calls the method directly in the child component<!-- Parent component --> <template> <div> <child :fatherMethod="fatherMethod"></child> </div> </template> <script> import child from '~/components/dam/child'; export default { components: child }, methods: { fatherMethod() { console.log('test'); } } }; </script> <!-- Child Component --> <template> <div> <button @click="childMethod()">Click</button> </div> </template> <script> export default { props: { fatherMethod: { type: Function, default: null } }, methods: { childMethod () { if (this.fatherMethod) { this.fatherMethod(); } } } }; </script> This concludes this article about the detailed case of Vue child component calling parent component method. For more relevant Vue child component calling parent component method content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Causes and solutions to the garbled character set problem in MySQL database
>>: Linux Jenkins configuration salve node implementation process diagram
illustrate: There are two main types of nginx log...
This article mainly introduces the solution to th...
1. Background In our daily website maintenance, w...
1: Understand the meaning of address rewriting an...
Preface Mobile devices have higher requirements f...
Table of contents 1. Preliminary preparation 1.1 ...
Preface Recently, I have been busy dealing with s...
Detailed explanation of mysql exists and not exis...
Table of contents topic analyze Objects of use So...
BackUpMysql.sh script #!/bin/bash PATH=/bin:/sbin...
The default ssh port number of Linux servers is g...
clear:both is used to清除浮動This is the impression I...
1 Get the installation resource package mysql-8.0...
The players we see on the web pages are nothing m...
When optimizing a website, we must learn to use e...