From 3e1df17643da4cf96616e0be1c5ffc12d0d78b66 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 12 Jul 2020 16:56:42 +0200 Subject: [PATCH] Fix changing text after mounting --- src/components/input/easymde.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/input/easymde.vue b/src/components/input/easymde.vue index a06dfb35e..e60235624 100644 --- a/src/components/input/easymde.vue +++ b/src/components/input/easymde.vue @@ -163,6 +163,9 @@ this.bubble() }, }, + mounted() { + this.text = this.value + }, methods: { bubble() { if(this.changeTimeout !== null) { @@ -210,6 +213,7 @@ &:after { position: absolute; top: 24px; + margin-left: -3px; } } }