mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 19:29:04 +08:00
feat: add markdown component
This commit is contained in:
3
src/components/Markdown/index.ts
Normal file
3
src/components/Markdown/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export { default as MarkDown } from './src/index.vue';
|
||||
|
||||
export * from './src/types';
|
82
src/components/Markdown/src/index.vue
Normal file
82
src/components/Markdown/src/index.vue
Normal file
@@ -0,0 +1,82 @@
|
||||
<template>
|
||||
<div class="markdown" ref="wrapRef" />
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import {
|
||||
defineComponent,
|
||||
ref,
|
||||
onMounted,
|
||||
unref,
|
||||
PropType,
|
||||
onUnmounted,
|
||||
nextTick,
|
||||
watchEffect,
|
||||
} from 'vue';
|
||||
import Vditor from 'vditor';
|
||||
import 'vditor/dist/index.css';
|
||||
export default defineComponent({
|
||||
emits: ['update:value'],
|
||||
props: {
|
||||
height: {
|
||||
type: Number as PropType<number>,
|
||||
default: 360,
|
||||
},
|
||||
value: {
|
||||
type: String,
|
||||
default: '',
|
||||
},
|
||||
},
|
||||
setup(props, { attrs, emit }) {
|
||||
const wrapRef = ref<Nullable<HTMLDivElement>>(null);
|
||||
const vditorRef = ref<Nullable<Vditor>>(null);
|
||||
|
||||
const initedRef = ref(false);
|
||||
|
||||
function init() {
|
||||
const wrapEl = unref(wrapRef);
|
||||
if (!wrapEl) return;
|
||||
const data = { ...attrs, ...props };
|
||||
vditorRef.value = new Vditor(wrapEl, {
|
||||
mode: 'sv',
|
||||
preview: {
|
||||
actions: [],
|
||||
},
|
||||
input: (v) => {
|
||||
emit('update:value', v);
|
||||
},
|
||||
...data,
|
||||
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>
|
4
src/components/Markdown/src/types.ts
Normal file
4
src/components/Markdown/src/types.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import Vditor from 'vditor';
|
||||
export interface MarkDownActionType {
|
||||
getVditor: () => Vditor;
|
||||
}
|
Reference in New Issue
Block a user