stash
This commit is contained in:
parent
b033a6d877
commit
f4884da562
1 changed files with 5 additions and 2 deletions
|
@ -90,12 +90,15 @@ export default {
|
|||
value() {
|
||||
if (this.selection) {
|
||||
const div = this.$refs.text;
|
||||
const sel = window.getSelection();
|
||||
sel.removeAllRanges();
|
||||
const range = document.createRange();
|
||||
console.log(this.selection);
|
||||
range.setStart(...this.findNode(div, this.selection.start));
|
||||
range.setEnd(...this.findNode(div, this.selection.end));
|
||||
this.selection.removeAllRanges();
|
||||
this.selection.addRange(range);
|
||||
sel.addRange(range);
|
||||
//this.selection.removeAllRanges();
|
||||
//this.selection.addRange(range);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue