文章预览
先使用vite 搭建基础版本脚手架这里不做讲解、由于vite初始化什么都没有安装、我采用了自己改造过的脚手架 详情见GitHub 内置 vue-router、commitlint、stylelint、eslint、prettier、unplugin-vue-components、unplugin-auto-import、lint-staged、sentry、pinia、husky... 基本上可以满足团队日常开发需求。 😅言归正传、生成目录大概是这样的 ├── README.md ├── commitlint.config.cjs ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public │ ├── version.txt │ └── vite.svg ├── src │ ├── App.vue │ ├── api │ │ └── index.ts │ ├── assets │ ├── auto-imports.d.ts │ ├── components │ ├── components.d.ts │ ├── global.d.ts │ ├── hooks │ ├── intercept.ts │ ├── main.ts │ ├── router │ ├── store │ ├── utils │ ├── view
………………………………