How to Set options of routable Models

When using Routable Modals in routes, how can i set for example at sheet Modal

                        swipeToClose: true,
                        swipeToStep: true,
                        backdrop: true,

Pass them in route modal options:

{
  path: '/some-path/',
  sheet: {
    url: '../...',
    swipeToClose: true,
    ...
  }
1 Like

thx a lot :slight_smile: worked as expected