Change View Transition Type

How can i change the transition of a view?
I am doing it by saving in local storage and reloading the page,but is there a way to do it without reloading the page?

hi dont understand what you need, what and why you save something in localStorage.

https://framework7.io/docs/view.html#custom-page-transitions

so;

routes = [
  ...
  {
    path: '/some-page/',
    url: '...',
    options: {
      transition: 'f7-circle',
    },
  },
  ...
]

Thanks,this helped me! It’s better to set it on the routes and not on the View, this way I can easily control the transition.