26 lines
496 B
Vue
26 lines
496 B
Vue
<template>
|
|
<div class="graojtoi">
|
|
<MkSample />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from "vue";
|
|
import MkSample from "@/components/MkSample.vue";
|
|
import { i18n } from "@/i18n";
|
|
import { definePageMetadata } from "@/scripts/page-metadata";
|
|
import icon from "@/scripts/icon";
|
|
|
|
definePageMetadata(
|
|
computed(() => ({
|
|
title: i18n.ts.preview,
|
|
icon: `${icon("ph-eye")}`,
|
|
})),
|
|
);
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.graojtoi {
|
|
padding: var(--margin);
|
|
}
|
|
</style>
|