Can A Panel Be Shared Among Pages?

My home view page has a panel in it.
When I navigate to another page in the same view I would like the same panel to be available.
Do I have to copy/paste the panel into all the pages?
Or is there a way to share this panel?

You can use Routable Panel as Router Component:
https://framework7.io/docs/router-component.html#component-root-element

1 Like

you can have the panel outsude the page, then every page will have the same panel

  f7-app(:params='f7params')
    .statusbar
    // its a vue component, but change it to your panel HTML, it should work fine
    left-panel
    f7-view(main url='/')

also the code is in pug. but is the same for html

1 Like