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.
- [Vuejs]-Vue + Vuetify submitting form with GET method passes empty values
- [Vuejs]-Vue warn : the runtime-only build of Vue where the template compiler is not available
Source:stackexchange.com