Go to file
2022-04-09 19:03:19 -05:00
.vscode Init commit 2022-04-08 22:44:38 -05:00
public Init commit 2022-04-08 22:44:38 -05:00
src removed abs positioning 2022-04-09 19:03:19 -05:00
.eslintignore Add linter & eslint-typescript plugins 2022-04-08 22:49:29 -05:00
.eslintrc.json Add linter & eslint-typescript plugins 2022-04-08 22:49:29 -05:00
.gitignore Init commit 2022-04-08 22:44:38 -05:00
deploy.yaml Update k8s deployment to force TLS connections for auth0 2022-04-09 09:41:24 -05:00
Dockerfile Setup nginx conf for single-page routing 2022-04-09 09:34:29 -05:00
index.html Init commit 2022-04-08 22:44:38 -05:00
nginx.conf Setup nginx conf for single-page routing 2022-04-09 09:34:29 -05:00
package.json inital Quazar setup 2022-04-09 12:58:31 -05:00
pnpm-lock.yaml inital Quazar setup 2022-04-09 12:58:31 -05:00
README.md Init commit 2022-04-08 22:44:38 -05:00
tsconfig.json Fix build issues 2022-04-08 23:22:15 -05:00
tsconfig.node.json Init commit 2022-04-08 22:44:38 -05:00
vite.config.ts Implement adding expression and var decls 2022-04-09 17:48:41 -05: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 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.