2021-02-06 10:06:54 +01:00
|
|
|
<template>
|
|
|
|
<div class="graojtoi">
|
|
|
|
<MkSample/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faEye } from '@fortawesome/free-solid-svg-icons';
|
2021-03-23 09:30:14 +01:00
|
|
|
import MkSample from '@client/components/sample.vue';
|
2021-02-06 10:06:54 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkSample,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
INFO: {
|
|
|
|
title: this.$ts.preview,
|
|
|
|
icon: faEye,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.graojtoi {
|
|
|
|
padding: var(--margin);
|
|
|
|
}
|
|
|
|
</style>
|