Framework7-Vue V2 Routable Panel

Is there any way that I make my left panel routable just like routable modals?
I want to let user click back button to close the left panel.

No, it is not supported. If it is an Android Cordova app, you can just assign backbutton event as

$(document).on(‘backbutton’, function(e) {
  app.panel.close()
  e.preventDefault()
})
1 Like

If it is an webpage, does it work if I add query string at the end of the current url when user opens the panel?
so that when user clicks the back button the webpage can close the panel.