Sharkey/src/client/app/desktop/views/pages/deck/deck.notifications-column.vue

30 lines
444 B
Vue
Raw Normal View History

2018-06-05 17:19:04 +03:00
<template>
<div>
2018-06-05 23:18:08 +03:00
<x-column :id="id">
<span slot="header">%fa:bell R%%i18n:@notifications%</span>
2018-06-05 17:19:04 +03: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 23:18:08 +03:00
},
props: {
id: {
type: String,
required: true
}
2018-06-05 17:19:04 +03:00
}
});
</script>