rudeshark.net/packages/client/src/pages/preview.vue
ThatOneCalculator 1f7ddc9d7c
refactor: ♻️ No Vue Reactivity
Performed with https://github.com/edison1105/drop-reactivity-transform , Reactivity Transform was an experimental feature and has now been deprecated.
2023-08-11 17:44:46 -07:00

30 lines
547 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";
const headerActions = computed(() => []);
const headerTabs = computed(() => []);
definePageMetadata(
computed(() => ({
title: i18n.ts.preview,
icon: "ph-eye ph-bold ph-lg",
})),
);
</script>
<style lang="scss" scoped>
.graojtoi {
padding: var(--margin);
}
</style>