What is the Vue CLI
https://cli.vuejs.org/guide/installation.html
Installation | Vue CLI
Installation Node Version Requirement Vue CLI 4.x requires Node.js version 8.9 or above (v10+ recommended). You can manage multiple versions of Node on the same machine with n, nvm or nvm-windows. To install the new package, use one of the following comman
cli.vuejs.org
에 나오는 것처럼
npm install -g @vue/cli
수행 후
vue --version
으로 확인
이후
vue create vue-first-app
cd vue-first-app
npm run serve
를 통해 VUE Framework 시작 가능하다
'WEB Developer > Vue JS' 카테고리의 다른 글
라우터의 종류 (0) | 2024.04.21 |
---|---|
Vue Instance Lifecycle (0) | 2024.03.31 |
Monster Slayer - v-for, v-if, v-model, v-bind, :class (0) | 2024.03.31 |
v-if, v-for, list 예시 (0) | 2024.03.31 |
Rendering Content Conditionally (v-if, v-show, v-for) (1) | 2024.03.31 |