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