[Vuejs]-How to use VueRouter in Chrome Extension

0👍

I fixed it. The reason Vue router wasn’t working is because I didn’t have a renderer Vue to mount

You will need to have a component Renderer.vue or whatever that would contain in template and mount that component in main.js createApp(Renderer) like this

Leave a comment