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