How to set panel parameters for Panel component

Following this Docs, I created a panel using component,
in routes.js I have:

import SidePanel from '../pages/side-panel.f7.html';
...
  {
    path: '/side-panel/',
    panel: {
      component: SidePanel,
    },
  },

In page I have the link <a href="/side-panel/" which open the panel successfully.

Now I need to pass swipe: true parameter the panel, i tried using data-swipe="true" with no luck

Any ideas?

{
    path: '/side-panel/',
    panel: {
        component: SidePanel,
        swipe: true,
    },
},

Did the trick