0👍
The difference is that your project built from scratch has this lines:
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
There are like aliases for commands from Vue CLI. You could try adding them to your downloaded project.
But underlying problem is probably that you don’t actually have Vue added to this project. It isn’t inside dependencies. In that case you could just run vue create [name-of-your-app]
and it should take care of everything.
- [Vuejs]-Vuejs invoice transactions, input item push
- [Vuejs]-Vuejs Suggestion regarding component rendering
Source:stackexchange.com