From 16838721aee0f547ba57791ad8e9f5e2d70e39d9 Mon Sep 17 00:00:00 2001 From: Joachim Schwarm Date: Wed, 6 Mar 2019 16:45:28 +0100 Subject: [PATCH] Set the default of value to empty string --- src/components/VueBootstrapTypeahead.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/VueBootstrapTypeahead.vue b/src/components/VueBootstrapTypeahead.vue index e172442..2e2c8fe 100644 --- a/src/components/VueBootstrapTypeahead.vue +++ b/src/components/VueBootstrapTypeahead.vue @@ -66,7 +66,8 @@ export default { validator: size => ['lg', 'sm'].indexOf(size) > -1 }, value: { - type: String + type: String, + default: '' }, data: { type: Array,