Ocelot-Social/pages/post/create.vue
2019-01-22 15:50:05 +01:00

20 lines
249 B
Vue

<template>
<div>
<ds-card>
<no-ssr>
<hc-editor />
</no-ssr>
</ds-card>
</div>
</template>
<script>
import HcEditor from '~/components/Editor/Editor.vue'
export default {
components: {
HcEditor
}
}
</script>