2019-02-15 22:50:58 +01:00
|
|
|
<template>
|
|
|
|
<x-column>
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #header>
|
2019-02-15 22:50:58 +01:00
|
|
|
<fa :icon="faHashtag"/>{{ $t('@.explore') }}
|
2019-02-18 01:48:00 +01:00
|
|
|
</template>
|
2019-02-15 22:50:58 +01:00
|
|
|
|
|
|
|
<div>
|
2019-02-17 16:45:43 +01:00
|
|
|
<x-explore v-bind="$attrs"/>
|
2019-02-15 22:50:58 +01:00
|
|
|
</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>
|