Sharkey/src/client/pages/emojis.vue
syuilo 361069314f
Refine UI (#7806)
* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Update default.vue

* wip
2021-09-17 22:39:15 +09:00

31 lines
554 B
Vue

<template>
<XCategory v-if="tab === 'category'"/>
</template>
<script lang="ts">
import { defineComponent, computed } from 'vue';
import * as os from '@client/os';
import * as symbols from '@client/symbols';
import XCategory from './emojis.category.vue';
export default defineComponent({
components: {
XCategory,
},
data() {
return {
[symbols.PAGE_INFO]: computed(() => ({
title: this.$ts.customEmojis,
icon: 'fas fa-laugh',
bg: 'var(--bg)',
})),
tab: 'category',
}
},
});
</script>
<style lang="scss" scoped>
</style>