cool-admin-vue/src/modules/demo/views/editor-quill.vue
2022-07-21 19:07:32 +08:00

11 lines
221 B
Vue

<template>
<div class="demo">
<cl-editor-quill v-model="content" :height="400" />
</div>
</template>
<script lang="ts" setup name="editor-quill">
import { ref } from "vue";
const content = ref<string>("");
</script>