19 lines
389 B
Vue

<template>
<div>
<div class="status"></div>
<div class="item">
<span>{{ t('filemenu.load-view') }}</span>
<span><code>Ctrl K</code></span>
</div>
</div>
</template>
<script setup>
import { defineComponent } from 'vue';
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
defineComponent({ name: 'load-view' });
</script>