rudeshark.net/packages/client/src/pages/preview.vue

28 lines
526 B
Vue
Raw Normal View History

2021-02-06 10:06:54 +01:00
<template>
<div class="graojtoi">
<MkSample/>
</div>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
2021-11-11 18:02:25 +01:00
import MkSample from '@/components/sample.vue';
import { i18n } from '@/i18n';
import { definePageMetadata } from '@/scripts/page-metadata';
2021-02-06 10:06:54 +01:00
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata(computed(() => ({
title: i18n.ts.preview,
icon: 'fas fa-eye',
})));
2021-02-06 10:06:54 +01:00
</script>
<style lang="scss" scoped>
.graojtoi {
padding: var(--margin);
}
</style>