Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. ######################################################################
  2. ## 01. Install the nodejs/npm
  3. ######################################################################
  4. sudo apt install nodejs npm # install node/npm
  5. sudo npm install -g @vue/cli # install vue-cli
  6. ######################################################################
  7. ## 03. Creating the project
  8. ######################################################################
  9. vue create vue-proj # Simple project
  10. ######################################################################
  11. ## 03. Install de dependecies and run
  12. ######################################################################
  13. npm install # Download the dependencies.
  14. npm run dev # To develop
  15. npm run build:[sit|stage|prod] # To build
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement