FreeDATA/gui
DJ2LS 6dc09c4d1b
Merge pull request #683 from DJ2LS/develop
0.14.3
2024-03-11 03:05:25 -07:00
..
build test with universal support 2023-10-23 09:17:44 +02:00
config Remove theme setting from GUI 2024-01-13 10:51:47 -05:00
electron [CodeFactor] Apply fixes 2024-03-04 10:42:55 +00:00
public removed info screen 2024-03-11 10:46:59 +01:00
src [CodeFactor] Apply fixes 2024-03-11 09:50:49 +00:00
tests Add first GUI test using vitest 2023-11-20 14:24:45 +01:00
.eslintrc.json renamed gui_vue to gui 2023-10-22 10:20:32 +02:00
README.md renamed gui_vue to gui 2023-10-22 10:20:32 +02:00
electron-builder.json5 first attempt creating a full bundle 2024-02-29 15:27:39 +01:00
index.html Prettified Code! 2023-10-22 22:23:23 +00:00
package.json Merge pull request #669 from DJ2LS/dependabot/npm_and_yarn/gui/develop/vue-3.4.21 2024-03-11 03:03:48 -07:00
setup.md Prettified Code! 2023-10-22 22:23:23 +00:00
tsconfig.json renamed gui_vue to gui 2023-10-22 10:20:32 +02:00
tsconfig.node.json renamed gui_vue to gui 2023-10-22 10:20:32 +02:00
vite.config.ts [CodeFactor] Apply fixes to commit a246a11 2024-01-08 22:01:50 +00: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

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.