I have a vue project setup which is working fine. I have a set of html/js/files (written by some other person, not using vue) that I want to inlcude in my project. The layout is like -
-> external.html (includes js and css also within it)
-> external2.html (includes js and css also within it)
-> etc.
Now in my vue-component, when I click on a link, the vue router should direct it to external.html file and the css/js present in the external.html file must get executed.
How can I do that without rewriting the whole code to make it vue-compatible?