This commit is contained in:
j3d1 2024-06-06 22:26:54 +02:00
parent 54b9cefc5d
commit 3d45572697

View file

@ -1,5 +1,5 @@
<template> <template>
<div contenteditable @input="onchange" ref="text" v-html="rawhtml(value)"> <div contenteditable @input="onchange" ref="text">
</div> </div>
</template> </template>
@ -93,8 +93,9 @@ export default {
if (this.selection) { if (this.selection) {
console.log(this.selection); console.log(this.selection);
setTimeout(() => {
const div = this.$refs.text; const div = this.$refs.text;
div.innerHTML = this.rawhtml(this.value);
const range = document.createRange(); const range = document.createRange();
const sel = window.getSelection(); const sel = window.getSelection();
range.setStart(...this.findNode(div, this.selection.start)); range.setStart(...this.findNode(div, this.selection.start));
@ -103,7 +104,7 @@ export default {
sel.removeAllRanges(); sel.removeAllRanges();
sel.addRange(range); sel.addRange(range);
console.log(range, sel); console.log(range, sel);
}, 0);
} }
} }
} }