Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # Getting a Web app Up and Running with VueJS
  2.  
  3. 1. Install from Vue CLI (Choose the default settings)
  4. `vue create appname`
  5.  
  6. 2. cd into appname
  7. `cd appname`
  8.  
  9. 3. Install router (Choose )
  10. `vue add router`
  11.  
  12. 4. Install bootstrap-vue
  13. `npm i --save bootstrap-vue bootstrap`
  14.  
  15. 5. Install Sass Loader
  16. `npm i --save sass-loader sass`
  17.  
  18. 6. Start the development server
  19. `npm run serve`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement