From fe87962a4116f28f0e9c975cdeeaf637d69c4d97 Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Thu, 24 Feb 2022 13:17:47 -0500 Subject: [PATCH] Before merging latest from develop --- .../dropdown-question/dropdown-question.vue | 10 +-- .../text-question/text-question.vue | 13 ++- src/layouts/address-lookup/address-lookup.vue | 81 +++++++++---------- .../address-questions/address-questions.vue | 38 ++++----- .../customer-questions/customer-questions.vue | 37 +++++---- .../email-question/email-question.vue | 26 ++++-- 6 files changed, 106 insertions(+), 99 deletions(-) diff --git a/src/common-components/dropdown-question/dropdown-question.vue b/src/common-components/dropdown-question/dropdown-question.vue index 3f1f6b047..edbd8787f 100644 --- a/src/common-components/dropdown-question/dropdown-question.vue +++ b/src/common-components/dropdown-question/dropdown-question.vue @@ -4,7 +4,9 @@ :ref="inputId" :id="inputId" class="form-control"> - + @@ -22,10 +24,8 @@ export default { required: true }, }, - data(){ - return { - value: String, - } + data() { + }, computed: { selectedOption: { diff --git a/src/common-components/text-question/text-question.vue b/src/common-components/text-question/text-question.vue index 5a4b48b42..12bc58da6 100644 --- a/src/common-components/text-question/text-question.vue +++ b/src/common-components/text-question/text-question.vue @@ -1,6 +1,6 @@