summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/deck/deck.explore-column.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-05-18 20:36:33 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-05-18 20:36:33 +0900
commitc7cc3dcdfd2c0962a39e7186852a17dbd09b6a5b (patch)
treec2e1671787c00daa8963c879dba6fbdab6f02d66 /src/client/app/common/views/deck/deck.explore-column.vue
parentFix bug (diff)
downloadmisskey-c7cc3dcdfd2c0962a39e7186852a17dbd09b6a5b.tar.gz
misskey-c7cc3dcdfd2c0962a39e7186852a17dbd09b6a5b.tar.bz2
misskey-c7cc3dcdfd2c0962a39e7186852a17dbd09b6a5b.zip
ユーザーグループ
Resolve #3218
Diffstat (limited to 'src/client/app/common/views/deck/deck.explore-column.vue')
-rw-r--r--src/client/app/common/views/deck/deck.explore-column.vue34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/client/app/common/views/deck/deck.explore-column.vue b/src/client/app/common/views/deck/deck.explore-column.vue
deleted file mode 100644
index 53db677b37..0000000000
--- a/src/client/app/common/views/deck/deck.explore-column.vue
+++ /dev/null
@@ -1,34 +0,0 @@
-<template>
-<x-column>
- <template #header>
- <fa :icon="faHashtag"/>{{ $t('@.explore') }}
- </template>
-
- <div>
- <x-explore v-bind="$attrs"/>
- </div>
-</x-column>
-</template>
-
-<script lang="ts">
-import Vue from 'vue';
-import i18n from '../../../i18n';
-import XColumn from './deck.column.vue';
-import XExplore from '../../../common/views/pages/explore.vue';
-import { faHashtag } from '@fortawesome/free-solid-svg-icons';
-
-export default Vue.extend({
- i18n: i18n(),
-
- components: {
- XColumn,
- XExplore,
- },
-
- data() {
- return {
- faHashtag
- };
- }
-});
-</script>