10 lines
291 B
Vue
10 lines
291 B
Vue
<template>
|
|
<ConfigSection title="Key Mapping" :icon-component="Keyboard">
|
|
<WIP />
|
|
</ConfigSection>
|
|
</template>
|
|
<script setup>
|
|
import { Keyboard } from 'lucide-vue-next'
|
|
import ConfigSection from '@/components/common/ConfigSection.vue'
|
|
import WIP from '@/components/WIP.vue'
|
|
</script> |