mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
17 lines
292 B
Vue
17 lines
292 B
Vue
<template>
|
|
<base-card>
|
|
<h2 class="title">{{ $t('admin.notifications.name') }}</h2>
|
|
<hc-empty icon="tasks" message="Coming Soon…" />
|
|
</base-card>
|
|
</template>
|
|
|
|
<script>
|
|
import HcEmpty from '~/components/Empty/Empty'
|
|
|
|
export default {
|
|
components: {
|
|
HcEmpty,
|
|
},
|
|
}
|
|
</script>
|