tiny-vue/examples/sites/demos/pc/app/rich-text-editor/collaboration-usage-composi...

11 lines
269 B
Vue

<template>
<tiny-rich-text-editor :collaboration="collaboration"></tiny-rich-text-editor>
</template>
<script setup lang="jsx">
import { ref } from 'vue'
import { RichTextEditor as TinyRichTextEditor } from '@opentiny/vue'
const collaboration = ref(true)
</script>