This commit is contained in:
j3d1 2024-06-06 22:26:54 +02:00
parent 9ffaa5513a
commit 3d793b4d6c

View file

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