该项目主要使用vue3技术栈+typescript

项目初始化

一、项目准备

版本

  • Vite 需要 Node.js 版本 >= 12.0.0

参考网站

vite官网)
typescript官网)
vue3官网)

一.创建项目

  1. # npm 6.x
  2. npm init vite@latest vue3-admin --template vue
  3. # npm 7+, 需要额外的双横线:
  4. npm init vite@latest vue3-admin -- --template vue
  5. # yarn
  6. yarn create vite vue3-admin --template vue
  7. # pnpm
  8. pnpm create vite vue3-admin -- --template vue

执行命令前请自行安装npm、yarn 或pnpm等工具 https://yarnpkg.com/getting-started/install https://pnpm.io/installation

image.png
image.png