Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Sqoop
- vaadin
- mapreduce
- GIT
- JavaScript
- Express
- Spring
- table
- MSSQL
- window
- plugin
- Eclipse
- tomcat
- NPM
- SPC
- Kotlin
- 공정능력
- Android
- es6
- react
- SQL
- 보조정렬
- xPlatform
- Python
- Java
- mybatis
- R
- hadoop
- IntelliJ
- SSL
Archives
- Today
- Total
DBILITY
vue 3 version project create 본문
반응형
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