# vite-vue-start **Repository Path**: fc2020/vite-vue-start ## Basic Information - **Project Name**: vite-vue-start - **Description**: vue3 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-29 - **Last Updated**: 2021-08-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Vue 3 + Typescript + Vite This template should help get you started developing with Vue 3 and Typescript in Vite. ## Recommended IDE Setup - [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) ## Type Support For `.vue` Imports in TS Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can enable Volar's `.vue` type support plugin by running `Volar: Switch TS Plugin on/off` from VSCode command palette. ## Introduce ├── publish/ └── src/ ├── assets/ // 静态资源目录 ├── common/ // 通用类库目录 ├── components/ // 公共组件目录 ├── router/ // 路由配置目录 ├── index.ts // 路由配置文件 ├── store/ // 状态管理目录 ├── index.ts // store 配置文件 ├── style/ // 通用 CSS 目录 ├── utils/ // 工具函数目录 ├── axios.ts // Axios 配置文件 ├── views/ // 页面组件目录 ├── App.vue ├── main.ts ├── shims-vue.d.ts ├── .editorconfig // 集成 EditorConfig 配置 ├── .prettierrc // 集成 Prettier 配置 ├── .eslintrc.js //集 Esint 配置 ├── tests/ // 单元测试目录 ├── index.html ├── tsconfig.json // TypeScript 配置文件 ├── vite.config.ts // Vite 配置文件 └── package.json