누른 키를 화면에 띄워주는 Tauri 기반 데스크톱 프로그램.
video.mp4
Vue.js와 Tauri 프레임워크를 이용하여 제작한 간단한 오픈소스 키뷰어 프로그램입니다.
- 이곳에서 압축 파일을 다운로드해 주세요.
- 내려받은 파일을 원하시는 곳에 압축 해제해 주세요.
- 압축 해제한 폴더에 있는 실행 파일(
kartrider-keyviewer-tauri.exe
)을 관리자 권한으로 실행하면 끝입니다. - 설정 창을 열려면 키뷰어 화면을 더블 클릭해 주세요.
관리자 권한으로 실행하지 않으면 원활한 사용이 불가할 수도 있습니다.



기존 resources
폴더와 config.json
파일은 그대로 두고, .exe
실행 파일만 교체하시면 기존 설정값을 그대로 사용하시면서 프로그램을 업데이트할 수 있습니다.
- 콘피그 파일 변경 기능 추가
- 잘못된 파일 로드 시 알림 기능 추가
- 폰트 변경 기능 추가
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.
- VS Code + Volar + Tauri + rust-analyzer
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:
- Run
Extensions: Show Built-in Extensions
from VS Code's command palette, look forTypeScript and JavaScript Language Features
, then right click and selectDisable (Workspace)
. By default, Take Over mode will enable itself if the default TypeScript extension is disabled. - Reload the VS Code window by running
Developer: Reload Window
from the command palette.
You can learn more about Take Over mode here.