# 安装vue官方脚手架及创建

# 一、通过Vue-cli创建项目

# 1.1、安装vue-cli,同一电脑上只需要安装一次

三种安装方式
- 1、yarn global add @vue/cli
- 2、npm install -g @vue/cli
- 3、cnpm install -g @vue/cli  // 需先安装cnpm

安装cnpm 
npm install -g cnpm --registry=https://registry.npm.taobao.org

安装yarn
npm install -g yarn

# 1.2、通过vue-cli创建项目

vue create vue3demo // 项目名
yarn serve

# 二、通过vite创建项目

# npm 创建

npm init vite-app 项目名称
cd 项目名称
npm install
npm run dev

# yarn 创建

yarn create vite-app 项目名称
cd 项目名称
yarn
yarn dev
Last Updated: 7/16/2021, 10:59:11 AM