fix: form data request as body

Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
This commit is contained in:
liyasthomas
2021-08-14 19:11:05 +05:30
parent 2051b8788a
commit 691629890f
7 changed files with 180 additions and 99 deletions

View File

@@ -12,7 +12,6 @@
:class="styles"
contenteditable="true"
@keydown.enter.prevent="$emit('enter', $event)"
@change="$emit('change', $event)"
@keyup="$emit('keyup', $event)"
@click="$emit('click', $event)"
@keydown="$emit('keydown', $event)"
@@ -133,6 +132,7 @@ export default defineComponent({
if (!this.highlightEnabled) {
this.htmlOutput = this.internalValue
this.$emit("input", this.internalValue)
this.$emit("change", this.internalValue)
return
}
@@ -232,6 +232,7 @@ export default defineComponent({
})
this.$emit("input", this.internalValue)
this.$emit("change", this.internalValue)
},
renderTippy() {
const tippable = document.querySelectorAll("[v-tippy]")