index.vue
1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<template>
<div class="markdown" ref="wrapRef" />
</template>
<script lang="ts">
import { defineComponent, ref, onMounted, unref, onUnmounted, nextTick, watchEffect } from 'vue';
import Vditor from 'vditor';
import 'vditor/dist/index.css';
import { propTypes } from '/@/utils/propTypes';
export default defineComponent({
emits: ['update:value'],
props: {
height: propTypes.number.def(360),
value: propTypes.string.def(''),
},
setup(props, { attrs, emit }) {
const wrapRef = ref<ElRef>(null);
const vditorRef = ref<Nullable<Vditor>>(null);
const initedRef = ref(false);
function init() {
const wrapEl = unref(wrapRef);
if (!wrapEl) return;
const bindValue = { ...attrs, ...props };
vditorRef.value = new Vditor(wrapEl, {
mode: 'sv',
preview: {
actions: [],
},
input: (v) => {
emit('update:value', v);
},
...bindValue,
cache: {
enable: false,
},
});
initedRef.value = true;
}
watchEffect(() => {
nextTick(() => {
const vditor = unref(vditorRef);
if (unref(initedRef) && props.value && vditor) {
vditor.setValue(props.value);
}
});
});
onMounted(() => {
nextTick(() => {
init();
});
});
onUnmounted(() => {
const vditorInstance = unref(vditorRef);
if (!vditorInstance) return;
vditorInstance.destroy();
});
return {
wrapRef,
getVditor: (): Vditor => vditorRef.value!,
};
},
});
</script>