From 4a32fe52557f632d5c7ae6310cb8f4d3d8756e38 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Wed, 23 Oct 2019 00:33:00 +0200 Subject: [PATCH] SeasonedInput can now be initialized with a value --- src/components/ui/SeasonedInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/SeasonedInput.vue b/src/components/ui/SeasonedInput.vue index 8946682..4c452c6 100644 --- a/src/components/ui/SeasonedInput.vue +++ b/src/components/ui/SeasonedInput.vue @@ -18,7 +18,7 @@ export default { }, data() { return { - inputValue: undefined, + inputValue: this.value || undefined, tempType: undefined } },