mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-02-05 17:36:05 +00:00
17 lines
280 B
Vue
17 lines
280 B
Vue
<template>
|
|
<base-card>
|
|
<h2 class="title">{{ $t('admin.settings.name') }}</h2>
|
|
<empty icon="tasks" message="Coming Soon…" />
|
|
</base-card>
|
|
</template>
|
|
|
|
<script>
|
|
import Empty from '~/components/Empty/Empty'
|
|
|
|
export default {
|
|
components: {
|
|
Empty,
|
|
},
|
|
}
|
|
</script>
|