Go to file
milo b50a4c6080 人员列表、新增、编辑 2022-04-13 23:53:44 +08:00
.vscode 项目初始化 2022-03-31 09:51:47 +08:00
public 项目初始化 2022-03-31 09:51:47 +08:00
src 人员列表、新增、编辑 2022-04-13 23:53:44 +08:00
.gitignore 调整git过滤 2022-04-13 22:35:53 +08:00
README.md 项目初始化 2022-03-31 09:51:47 +08:00
index.html 项目初始化 2022-03-31 09:51:47 +08:00
package-lock.json 项目初始化 2022-03-31 09:51:47 +08:00
package.json 项目初始化 2022-03-31 09:51:47 +08:00
tsconfig.json 项目初始化 2022-03-31 09:51:47 +08:00
tsconfig.node.json 项目初始化 2022-03-31 09:51:47 +08:00
vite.config.ts 项目初始化 2022-03-31 09:51:47 +08:00

README.md

Vue 3 + Typescript + Vite

This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

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.