How to create an app with vue CLI without a global installation
If you check out the official doc the process of generating new app has 2 steps:
# install globaly
npm install -g @vue/cli
# create app
vue create my-project
If you use vue cli only form time to time global installation doesn't make much sense - you...
how-to.dev1 min read