Ocelot-Social/webapp/pages/admin/notifications.vue
2019-05-29 09:47:24 -03:00

16 lines
263 B
Vue

<template>
<ds-card :header="$t('admin.notifications.name')">
<hc-empty icon="tasks" message="Coming Soon…" />
</ds-card>
</template>
<script>
import HcEmpty from '~/components/Empty.vue'
export default {
components: {
HcEmpty,
},
}
</script>