blossom0417
1 min readSep 25, 2018

Install vue, vue-cli and create my project

vue 설치하고 webpack-simple 로 프로젝트 생성, 시작하기.

node.js 가 깔려있다 치고, 홈페이지에 설치하기전 이전 버전에 대한 경고박스가 있으니 참고바람

let’s install vue.js

assume that you’ve already installed node.js on your laptop!

#Install vue-cli

npm install -g @vue/cli

#create your simple project

vue init webpack-simple hello-vue
--
vue init <template-name> <project-name>

https://github.com/vuejs-templates/webpack-simple

you can see below

create hello-vue project

#creating a project with vue cli3

  • instant prototyping
npm install -g @vue/cli-service-global
  • create a project
vue create productpage.vue

#reference

https://medium.com/witinweb/vue-cli-%EB%A1%9C-vue-js-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-browserify-webpack-22582202cd52

No responses yet