misskey/src/client/app/common/views/deck/deck.notifications-column.vue

41 lines
724 B
Vue
Raw Normal View History

2018-06-05 23:19:04 +09:00
<template>
2018-06-08 07:43:12 +09:00
<x-column :name="name" :column="column" :is-stacked="isStacked">
2019-02-18 11:13:56 +09:00
<template #header><fa :icon="['far', 'bell']"/>{{ name }}</template>
2018-06-05 23:19:04 +09:00
<x-notifications/>
</x-column>
2018-06-05 23:19:04 +09:00
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-06-05 23:19:04 +09:00
import XColumn from './deck.column.vue';
import XNotifications from './deck.notifications.vue';
export default Vue.extend({
i18n: i18n(),
2018-06-05 23:19:04 +09:00
components: {
XColumn,
XNotifications
2018-06-06 05:18:08 +09:00
},
2018-06-08 05:48:27 +09:00
props: {
column: {
type: Object,
required: true
},
isStacked: {
type: Boolean,
required: true
}
},
2018-06-07 06:13:57 +09:00
computed: {
name(): string {
if (this.column.name) return this.column.name;
return this.$t('@deck.notifications');
2018-06-07 06:13:57 +09:00
}
},
2018-06-05 23:19:04 +09:00
});
</script>