Go to file
2022-09-06 17:46:52 +08:00
.vscode [add] first 2022-04-10 00:30:43 +08:00
public [add] 九月爆機娛樂城公司活動 2022-09-06 17:46:52 +08:00
src [add] 九月爆機娛樂城公司活動 2022-09-06 17:46:52 +08:00
.gitignore [add] 同步 2022-04-20 08:54:20 +08:00
.gitlab-ci.yml [mod] .gitlab-ci.yml 2022-04-20 11:21:08 +08:00
favicon.ico [add] 七月爆機娛樂城公司活動 2022-07-25 12:26:01 +08:00
index.html [add] fonts 2022-04-14 10:30:49 +08:00
package-lock.json [add] 同步 2022-04-20 08:54:20 +08:00
package.json [mod] .el-tabs__item font-size 25px->18px 2022-04-20 09:09:19 +08:00
README.md [mod] README.md 2022-04-11 10:15:39 +08:00
tsconfig.json [add] 加了一堆東西 2022-08-10 09:31:29 +08:00
tsconfig.node.json [add] first 2022-04-10 00:30:43 +08:00
vite.config.ts [add] 加了一堆東西 2022-08-10 09:31:29 +08:00

Vue 3 + Typescript + Vite

  1. npm install
  2. npm run dev

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 Take Over mode by following these steps:

  1. Run Extensions: Show Built-in Extensions from VSCode's command palette, look for TypeScript and JavaScript Language Features, then right click and select Disable (Workspace). By default, Take Over mode will enable itself if the default TypeScript extension is disabled.
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.

You can learn more about Take Over mode here.