Ocelot-Social/webapp/pages/settings/data-download.vue
2019-05-23 19:40:39 +02:00

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>