[Vuejs]-Open route in a sidepage using vuejs

0👍

You could search for your component using the path in the router options.

const route = this.$router.options.routes.find(
      (route) => !!route?.path?.includes("route/to/display")
    )
this.component = route?.component;

And then display it using component tag.

<component :is="component" />

Leave a comment