Ocelot-Social/webapp/pages/settings/data-download.vue
2019-03-20 21:06:17 +01:00

19 lines
275 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>