Currently working on a chrome extension using Vue.js where I need to dynamically update views based on user interactions.
Usually, I would rely on the Vue Router to handle this seamlessly... however, the router is tied to the URL which poses limitations.
Is there a way to customize this behavior?
For example, can the <router-view/>
in App.vue
function without monitoring the browser's URL but rather another object?