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