Files
hoppscotch/packages/hoppscotch-app/components/app/ShortcutsEntry.vue
2021-12-31 18:39:31 +05:30

28 lines
486 B
Vue

<template>
<div class="flex items-center py-1">
<span class="flex flex-1 mr-4">
{{ t(shortcut.label) }}
</span>
<span
v-for="(key, index) in shortcut.keys"
:key="`key-${String(index)}`"
class="shortcut-key"
>
{{ key }}
</span>
</div>
</template>
<script setup lang="ts">
import { useI18n } from "~/helpers/utils/composables"
const t = useI18n()
defineProps<{
shortcut: {
label: string
keys: string[]
}
}>()
</script>