topic description
I have two component templates An and B. I want to send values from A template to B template when the page is loaded. The view page order is
< router-view name= "A" > < / router-view >
< router-view name= "B" > < / router-view >
I wrote the value passing method in the mounted cycle of A, but found that template B has not been mounted yet. How to solve
mounted: function () {
this.sendUser();//,B
},