mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-09 03:16:37 +08:00
46 lines
989 B
Vue
46 lines
989 B
Vue
<script setup lang="ts">
|
|
import { onMounted, ref } from 'vue';
|
|
import WangEditor from 'wangeditor';
|
|
|
|
const editor = ref<WangEditor>();
|
|
const domRef = ref<HTMLElement>();
|
|
|
|
function renderWangEditor() {
|
|
editor.value = new WangEditor(domRef.value);
|
|
setEditorConfig();
|
|
editor.value.create();
|
|
}
|
|
|
|
function setEditorConfig() {
|
|
if (editor.value?.config?.zIndex) {
|
|
editor.value.config.zIndex = 10;
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
renderWangEditor();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-full">
|
|
<NCard title="富文本插件" :bordered="false" class="card-wrapper">
|
|
<div ref="domRef" class="bg-white dark:bg-dark"></div>
|
|
<template #footer>
|
|
<GithubLink link="https://github.com/wangeditor-team/wangEditor" />
|
|
</template>
|
|
</NCard>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
:deep(.w-e-toolbar) {
|
|
background: inherit !important;
|
|
border-color: #999 !important;
|
|
}
|
|
:deep(.w-e-text-container) {
|
|
background: inherit;
|
|
border-color: #999 !important;
|
|
}
|
|
</style>
|