The documentation says it very clearly about passing data between parent and child components.
But if people who don’t understand at all cannot understand the plan, the following is a small example with two files
<template> <child :child-msg="msg" @ok="event"></child> </template> <script> import child from './'; export default { data(){ return{ msg:'hello worldgogo' } }, components:{ child }, methods:{ event(val){ (val); } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> </style>
<template> <p>{{childMsghello}}</p> </template> <script> export default { props: ['childMsg'], data(){ return{ childMsghello:+'this is child' } }, created(){ //Customize the event, and set the value of the callback function that listens to this event to 200 this.$emit('ok','200'); } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> </style>
Summarize
The above is the method of passing data between vue2.0 parent-child components introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to everyone in time. Thank you very much for your support for my website!