Sharkey/packages/client/src/pages/v.vue

30 lines
657 B
Vue
Raw Normal View History

2020-11-28 04:52:57 +02:00
<template>
<div>
<section class="_section">
<div class="_content" style="text-align: center;">
2021-03-06 06:23:59 +02:00
<img src="/static-assets/icons/512.png" alt="" style="display: block; width: 100px; margin: 0 auto; border-radius: 16px;"/>
2020-11-28 04:52:57 +02:00
<div style="margin-top: 0.75em;">Misskey</div>
<div style="opacity: 0.5;">v{{ version }}</div>
</div>
</section>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
2021-11-11 19:02:25 +02:00
import { version } from '@/config';
import * as symbols from '@/symbols';
2020-11-28 04:52:57 +02:00
export default defineComponent({
data() {
return {
2021-04-10 06:54:12 +03:00
[symbols.PAGE_INFO]: {
2020-11-28 04:52:57 +02:00
title: 'Misskey',
icon: null
},
version,
}
},
});
</script>