No description
  • Vue 83.4%
  • TypeScript 11.6%
  • HTML 3.5%
  • JavaScript 1.5%
Find a file
2022-03-31 23:00:29 +09:00
.vscode re-initialize 2022-03-11 20:40:13 +09:00
public re-initialize 2022-03-11 20:40:13 +09:00
src Update Contact.vue 2022-03-31 23:00:29 +09:00
.gitignore re-initialize 2022-03-11 20:40:13 +09:00
.prettierrc re-initialize 2022-03-11 20:40:13 +09:00
index.html analytics 2022-03-11 23:43:20 +09:00
package.json feat: projects area 2022-03-11 23:35:51 +09:00
postcss.config.js re-initialize 2022-03-11 20:40:13 +09:00
README.md re-initialize 2022-03-11 20:40:13 +09:00
tailwind.config.js re-initialize 2022-03-11 20:40:13 +09:00
tsconfig.json re-initialize 2022-03-11 20:40:13 +09:00
tsconfig.node.json re-initialize 2022-03-11 20:40:13 +09:00
vite.config.ts re-initialize 2022-03-11 20:40:13 +09:00
yarn.lock feat: projects area 2022-03-11 23:35:51 +09:00

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.