Sharkey/packages/client/src/pages/preview.vue

29 lines
544 B
Vue
Raw Normal View History

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