[Vuejs]-How to combine small vuejs app with big SPA also vuejs app

0👍

You could make a private package either on npm (which costs money) or you could do it on verdaccio (for free) another option is simply to have the repo as a dependency in the package JSON like this:
"myPackage": ""git+https://github.com/myusername/myRepo.git"
Of course the exact URL (http or https) would depend on your repo.

Leave a comment