Implement keyboard navigation using arrow keys in the whole application. (#2)

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2025-12-10 15:43:40 +00:00
parent 033e735248
commit 2487759628
23 changed files with 1785 additions and 134 deletions
+2
View File
@@ -3,9 +3,11 @@ import '@/assets/style.css'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import { initKeyboardNavigation } from '@/utils/keynav'
const app = createApp(App)
app.use(createPinia())
app.mount('#app')
initKeyboardNavigation()