I've decided to rewrite a web app using Vue.js but I'd like to start small and use my already working scripts for the main part of the app, while using Vue for other parts.
I'm looking into the Vue webpack template and I've tried to include multiple script tags into a component but vue gives me a warning that this can't be done.
I've successfully included the scripts into the main index.html and it's working but I think that's a really bad solution. What are some other ways to use Vue components with included js scripts?
require
my scripts will need to export the functions, is this the best option? – lam3r4370 May 9 at 11:23module.export
your old scripts – Yerko Palma May 9 at 13:17