appframework icon indicating copy to clipboard operation
appframework copied to clipboard

how to pass value between two pages?

Open GitCod-Man opened this issue 9 years ago • 1 comments

I have a main page with list data, now i want to click one data and go to another page,how can i pass value to another page ? function goinfor(id){

     $.afui.loadContent('partials/infor.html',false,false,'up-reveal');
}

how to do it ? thanks!

GitCod-Man avatar Aug 29 '16 09:08 GitCod-Man

You could pass it with route parameters or by attaching the data you need to $root. Additionally, and probably better, you can use an event bus. https://medium.com/@andrejsabrickis/https-medium-com-andrejsabrickis-create-simple-eventbus-to-communicate-between-vue-js-components-cdc11cd59860

Grogglex avatar Jul 05 '17 18:07 Grogglex