mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-19 02:12:50 +00:00
11 lines
221 B
Vue
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>
|