Sharkey/src/client/app/mobile/views/pages/explore.vue

29 lines
540 B
Vue
Raw Normal View History

2019-02-15 23:50:58 +02:00
<template>
<mk-ui>
2019-02-18 04:13:56 +02:00
<template #header><span style="margin-right:4px;"><fa :icon="faHashtag"/></span>{{ $t('@.explore') }}</template>
2019-02-15 23:50:58 +02:00
<main>
2019-02-17 17:49:34 +02:00
<x-explore v-bind="$attrs"/>
2019-02-15 23:50:58 +02:00
</main>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
import { faHashtag } from '@fortawesome/free-solid-svg-icons';
import XExplore from '../../../common/views/pages/explore.vue';
export default Vue.extend({
i18n: i18n(''),
components: {
XExplore
},
data() {
return {
faHashtag
};
},
});
</script>