Cannot pass props in router

I am unable to pass props to the router:

This does not work:

{
  path: '/some-page/',
  component: SomeComponent,
  options: {
    props: {
      foo: 'bar',
      bar: true,
    },
  },
}

And neither does this:

f7router.navigate('/some-page/', {
  props: {
    foo: 'bar',
    bar: true,
  }
})

Please see codesandbox

Здесь нет никакого бага, посмотри что такое f7route в документации.

I see it is passed as React properties, thanks

props object props that will be passed as Vue/React page component props

thank you for share with us

thnx for share itpikashow download