33 lines
480 B
Vue
33 lines
480 B
Vue
|
<template>
|
||
|
<div class="graojtoi">
|
||
|
<MkSample/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from 'vue';
|
||
|
import { faEye } from '@fortawesome/free-solid-svg-icons';
|
||
|
import MkSample from '@/components/sample.vue';
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: {
|
||
|
MkSample,
|
||
|
},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
INFO: {
|
||
|
title: this.$ts.preview,
|
||
|
icon: faEye,
|
||
|
},
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.graojtoi {
|
||
|
padding: var(--margin);
|
||
|
}
|
||
|
</style>
|