Files
vue3-element-admin/src/views/demo/wang-editor.vue
Theo 0850359002 wip: 🚧 通知公告开发
通知公告开发
2024-09-01 01:27:01 +08:00

24 lines
570 B
Vue

<!-- wangEditor富文本编辑器示例 -->
<script setup lang="ts">
import Editor from "@/components/WangEditor/index.vue";
const value = ref("初始内容");
</script>
<template>
<div class="app-container">
<el-link
href="https://gitee.com/youlaiorg/vue3-element-admin/blob/master/src/views/demo/wang-editor.vue"
type="primary"
target="_blank"
class="mb-[20px]"
>
示例源码 请点击>>>>
</el-link>
<editor
v-model="value"
style=" z-index: 99999;height: calc(100vh - 180px)"
/>
</div>
</template>