summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/preview.vue
blob: 4accac41922ec542671339233ebdb649b66bb8bc (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
<template>
<div class="graojtoi">
	<MkSample/>
</div>
</template>

<script lang="ts" setup>
import { computed } from 'vue';
import MkSample from '@/components/sample.vue';
import * as symbols from '@/symbols';
import { i18n } from '@/i18n';

defineExpose({
	[symbols.PAGE_INFO]: computed(() => ({
		title: i18n.ts.preview,
		icon: 'fas fa-eye',
		bg: 'var(--bg)',
	})),
});
</script>

<style lang="scss" scoped>
.graojtoi {
	padding: var(--margin);
}
</style>