mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-03 13:44:47 +08:00
57 lines
1.3 KiB
Vue
57 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import "@wangeditor/editor/dist/css/style.css";
|
|
import { Editor, Toolbar } from "@wangeditor/editor-for-vue";
|
|
import { onBeforeUnmount, ref, shallowRef, onMounted } from "vue";
|
|
|
|
defineOptions({
|
|
name: "BaseEditor"
|
|
});
|
|
|
|
const mode = "default";
|
|
// 编辑器实例,必须用 shallowRef
|
|
const editorRef = shallowRef();
|
|
|
|
// 内容 HTML
|
|
const valueHtml = ref("<p>你好</p>");
|
|
|
|
// 模拟 ajax 异步获取内容
|
|
onMounted(() => {
|
|
setTimeout(() => {
|
|
valueHtml.value = "<p>我是模拟的异步数据</p>";
|
|
}, 1500);
|
|
});
|
|
|
|
const toolbarConfig: any = { excludeKeys: "fullScreen" };
|
|
const editorConfig = { placeholder: "请输入内容..." };
|
|
|
|
const handleCreated = editor => {
|
|
// 记录 editor 实例,重要!
|
|
editorRef.value = editor;
|
|
};
|
|
|
|
// 组件销毁时,也及时销毁编辑器
|
|
onBeforeUnmount(() => {
|
|
const editor = editorRef.value;
|
|
if (editor == null) return;
|
|
editor.destroy();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="wangeditor">
|
|
<Toolbar
|
|
:editor="editorRef"
|
|
:defaultConfig="toolbarConfig"
|
|
:mode="mode"
|
|
style="border-bottom: 1px solid #ccc"
|
|
/>
|
|
<Editor
|
|
v-model="valueHtml"
|
|
:defaultConfig="editorConfig"
|
|
:mode="mode"
|
|
style="height: 500px; overflow-y: hidden"
|
|
@onCreated="handleCreated"
|
|
/>
|
|
</div>
|
|
</template>
|