1 01.创建 Vite项目并安装 Vscode 插件
# 设置 Npm 安装依赖包地址
npm config get registry
npm config set registr https://registery.npmmirror.com npm create vite@latest <项目名称> -- --template vue
`
cd my-vue-app
npm install // 安装依赖
npm run dev // 运行开发服务
`Last updated