2018-06-05 16:19:04 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2018-06-05 22:18:08 +02:00
|
|
|
<x-column :id="id">
|
2018-06-06 18:17:29 +02:00
|
|
|
<span slot="header">%fa:bell R%%i18n:common.deck.notifications%</span>
|
2018-06-05 16:19:04 +02:00
|
|
|
|
|
|
|
<x-notifications/>
|
|
|
|
</x-column>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import XColumn from './deck.column.vue';
|
|
|
|
import XNotifications from './deck.notifications.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XColumn,
|
|
|
|
XNotifications
|
2018-06-05 22:18:08 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
id: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
2018-06-05 16:19:04 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|