DBILITY

독거 가능성 100% 노후에 라면값이라도 하게 센스를 발휘합시다!😅
Please click on the ad so that I can pay for ramen in my old age!
点击一下广告,让老后吃个泡面钱吧!
老後にラーメン代だけでもするように広告を一回クリックしてください。

vue 3 version project create 본문

front-end & ui/vuejs

vue 3 version project create

DBILITY 2021. 7. 30. 16:48
반응형

intellij에서 vuejs plugin설치후 project를 생성하면 2.6이 생성이 되어 버린다.

New Project Dialog의 Use the default project setup (babel, eslint)의 체크를 해제하고 생성하면 Vue 3 preset선택 가능.


C:\Dev64\workspace>vue -V
@vue/cli 4.5.13

C:\Dev64\workspace>vue create -m npm vuestudy
#yarn을 설치하고 테스트로 생성할때 default를 yarn을 선택했더니 -m 옵션이 없으면 오류가 남..ㅠㅠ
#npm uninstall -g yarn
#사용자계정 하위에 .vuerc파일 내의 packageManger를 npm으로 수정하면 된다.
Vue CLI v4.5.13
? Please pick a preset: Default (Vue 3) ([Vue 3] babel, eslint)


Vue CLI v4.5.13
✨  Creating project in C:\Dev64\workspace\vuestudy.
🗃  Initializing git repository...
⚙️  Installing CLI plugins. This might take a while...

일괄 작업을 끝내시겠습니까 (Y/N)? Y

C:\Dev64\workspace>vue create vuestudy


Vue CLI v4.5.13
? Please pick a preset: Default (Vue 3) ([Vue 3] babel, eslint)


Vue CLI v4.5.13
✨  Creating project in C:\Dev64\workspace\vuestudy.
🗃  Initializing git repository...
⚙️  Installing CLI plugins. This might take a while...


> yorkie@2.0.0 install C:\Dev64\workspace\vuestudy\node_modules\yorkie
> node bin/install.js

setting up Git hooks
done


> core-js@3.16.0 postinstall C:\Dev64\workspace\vuestudy\node_modules\core-js
> node -e "try{require('./postinstall')}catch(e){}"


> ejs@2.7.4 postinstall C:\Dev64\workspace\vuestudy\node_modules\ejs
> node ./postinstall.js

added 1257 packages from 656 contributors and audited 1260 packages in 26.896s

80 packages are looking for funding
  run `npm fund` for details

found 7 moderate severity vulnerabilities
  run `npm audit fix` to fix them, or `npm audit` for details
🚀  Invoking generators...
📦  Installing additional dependencies...

added 80 packages from 86 contributors and audited 1340 packages in 8.017s

87 packages are looking for funding
  run `npm fund` for details

found 7 moderate severity vulnerabilities
  run `npm audit fix` to fix them, or `npm audit` for details
⚓  Running completion hooks...

📄  Generating README.md...

🎉  Successfully created project vuestudy.
👉  Get started with the following commands:

 $ cd vuestudy
 $ npm run serve
반응형

'front-end & ui > vuejs' 카테고리의 다른 글

vuejs BASE_URL relative path build  (0) 2021.10.26
vue 3 image src binding  (0) 2021.08.06
vue 실습 01  (0) 2021.08.06
vue 3 vue-router,plugin 설치 및 project 적용  (0) 2021.08.04
vue 3 instance lifecycle  (0) 2020.11.28
Comments