Vue data pass and store issue

Viewed 19

My vue project

Currently I had a android app, and when I click a button in android app, it went to my vue page. which is Modulator. And Modulator had a button can direct to Gateway. inside Gateway page had a button goes to Pattern page. And here is my issue. Inside Pattern page. I had a data called gatewayIotId I want to pass into Modulator to demonstrate. So, currently I create a confirm button and pass the data via URL like

window.open('index.html?gatewayIotId='+gatewayIotId,'_self')

Although the Modulator page can show the data on the page. when I exit my vue page to android app, then back to my vue Modulator page again It does not show the gatewayIotId anymore since It never goes to the pattern page.

Thus, How can I still show gatewayIotId on Modulator page when i enter Modulator page from Andriod app at the second time

0 Answers
Related