This commit is contained in:
syuilo
2018-06-05 23:19:04 +09:00
parent dfa2c951d6
commit 2e919b788f
3 changed files with 361 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
<template>
<div>
<x-column>
<span slot="header">%fa:bell R% %i18n:@notifications%</span>
<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
}
});
</script>