Tag:Father son component
-
Detailed explanation of communication method between parent and child components in vuejs
This paper introduces the communication method between parent and child components in vuejs. To share with you for your reference, as follows: 1、 Parent passes messages to child // Parent.vue <template> <div> <v-child :msg=”message”></v-child> </div> </template> <script> import VChild from ‘./child.vue’ export default { components: { VChild }, data () { return { //The parent […]