RATSENO

Vue3 프로젝트 생성 본문

DEV/JS

Vue3 프로젝트 생성

RATSENO 2022. 4. 25. 09:58

Vite를 사용하여 시작

npm init vite-app hello-vue3 # 또는 yarn create vite-app hello-vue3

 

vue-cli를 사용하여 시작
npm install -g @vue/cli # 또는 yarn global add @vue/cli
vue create hello-vue3
# select vue 3 preset
Comments