summaryrefslogtreecommitdiff
path: root/packages/client/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-01-06 23:09:52 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-01-06 23:09:52 +0900
commit6119945256ba298eaa187c04e2d255402b5a1fed (patch)
tree3e6f74ef8597df80e103bd9ec85e23a216d4aa9e /packages/client/src
parentrefactor(client): use composition api (diff)
downloadmisskey-6119945256ba298eaa187c04e2d255402b5a1fed.tar.gz
misskey-6119945256ba298eaa187c04e2d255402b5a1fed.tar.bz2
misskey-6119945256ba298eaa187c04e2d255402b5a1fed.zip
clean up
Diffstat (limited to 'packages/client/src')
-rw-r--r--packages/client/src/pages/v.vue29
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/client/src/pages/v.vue b/packages/client/src/pages/v.vue
deleted file mode 100644
index 3b1bb20861..0000000000
--- a/packages/client/src/pages/v.vue
+++ /dev/null
@@ -1,29 +0,0 @@
-<template>
-<div>
- <section class="_section">
- <div class="_content" style="text-align: center;">
- <img src="/static-assets/icons/512.png" alt="" style="display: block; width: 100px; margin: 0 auto; border-radius: 16px;"/>
- <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';
-import { version } from '@/config';
-import * as symbols from '@/symbols';
-
-export default defineComponent({
- data() {
- return {
- [symbols.PAGE_INFO]: {
- title: 'Misskey',
- icon: null
- },
- version,
- }
- },
-});
-</script>