blob: 78167500f45816a8ce58eb276a44aa0e72f38924 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!--
SPDX-FileCopyrightText: syuilo and misskey-project
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div>
<MkSample/>
</div>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
import MkSample from '@/components/MkPreview.vue';
import { i18n } from '@/i18n.js';
import { definePage } from '@/page.js';
const headerActions = computed(() => []);
const headerTabs = computed(() => []);
definePage(computed(() => ({
title: i18n.ts.preview,
icon: 'ti ti-eye',
})));
</script>
|