mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
19 lines
338 B
Vue
19 lines
338 B
Vue
<template>
|
|
<UKbd class="!my-0 align-text-top">
|
|
{{ shortcut }}
|
|
</UKbd>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
value: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
})
|
|
|
|
const { metaSymbol } = useShortcuts()
|
|
|
|
const shortcut = computed(() => props.value === 'meta' ? metaSymbol.value : props.value)
|
|
</script>
|