mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
20 lines
249 B
Vue
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>
|