Add <Transition> to button group.

This commit is contained in:
Bryan Mauger 2023-04-25 13:57:49 -04:00
parent 77ebdf1a7e
commit 97a9cfb37f

View file

@ -65,17 +65,17 @@
ref="mobileLocationQuestions" ref="mobileLocationQuestions"
linkWidgetName="MobileLocationLinkWidget" linkWidgetName="MobileLocationLinkWidget"
modalWidgetName="MobileLocationModalWidget" /> modalWidgetName="MobileLocationModalWidget" />
<Transition name="fade" mode="out-in">
<shopQuestion <shopQuestion
ref="shopQuestion" ref="shopQuestion"
v-show=" v-show="selectedAppointmentType === 'Inshop' || selectedAppointmentType === 'Dropoff'"
selectedAppointmentType === 'Inshop' || selectedAppointmentType === 'Dropoff'
"
v-model="providerNumber" v-model="providerNumber"
:isDropoff="isDropoff" :isDropoff="isDropoff"
:serviceZipCode="zipCode" :serviceZipCode="zipCode"
:selectedAppointmentType="selectedAppointmentType" :selectedAppointmentType="selectedAppointmentType"
:shopQuestionData="shopQuestionInitialData" :shopQuestionData="shopQuestionInitialData"
cmsWidgetName="ShopQuestionWidget" /> cmsWidgetName="ShopQuestionWidget" />
</Transition>
<contentGroupModal ref="RecalModal" cmsWidgetName="RecalModal" /> <contentGroupModal ref="RecalModal" cmsWidgetName="RecalModal" />
<funnel-footer <funnel-footer
cmsWidgetName="FunnelFooterWidget" cmsWidgetName="FunnelFooterWidget"
@ -148,8 +148,6 @@ export default {
isRecalibrationServiceableMobile: null, isRecalibrationServiceableMobile: null,
mobileFeePart: null, mobileFeePart: null,
zipContainsMilitaryBase: false, zipContainsMilitaryBase: false,
selectedAppointmentType: "Dropoff",
providerNumber: "127",
shopQuestionInitialData: null, shopQuestionInitialData: null,
}; };
}, },