Remove button question code (not needed)

This commit is contained in:
Bryan Mauger 2022-08-24 12:22:23 -04:00
parent 94a4cdcb07
commit 50b868c0cc

View file

@ -11,21 +11,6 @@
<vehicleBanner cmsWidgetName="VehicleBannerWidget" :displayGenericVehicleImage=false />
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" />
<div class="fade-on-route-transition sub-container make-tall">
<buttonQuestion
:answers="years"
text-position="text-start"
questionText="List Button as Radio"
groupName="years"
/>
<buttonQuestion
questionText="CASH OR INSURANCE"
:answers="answersFromCms"
groupName="cash-or-insurance"
buttonType="listButtonHorizontal"
useTextForValue
isCashOrInsurance
isRequired
/>
<radioServicePackage/>
<funnel-footer
cmsWidgetName="FunnelFooterWidget"
@ -76,42 +61,27 @@ export default {
years() {
return ["2011", "2012"];
},
data(){
return {
isInsurance: false,
}
answersFromCms() {
return ["Pay on my own", "Pay with insurance"];
},
methods: {
arePagePrerequisitesValid() {
return true;
}
},
computed: {
years() {
return ["2011", "2012"];
selectedChipCountValues: {
get: function() {
return this.modelValue;
},
answersFromCms() {
return ["Pay on my own", "Pay with insurance"];
},
selectedChipCountValues: {
get: function() {
return this.modelValue;
},
set: function(newValue) {
this.$emit("update:modelValue", newValue);
},
set: function(newValue) {
this.$emit("update:modelValue", newValue);
},
},
components: {
funnelHeader,
funnelFooter,
vehicleBanner,
funnelSubHeader,
Form,
buttonQuestion,
radioServicePackage,
quoteModal,
},
},
components: {
funnelHeader,
funnelFooter,
vehicleBanner,
funnelSubHeader,
Form,
radioServicePackage,
quoteModal,
},
};
</script>
};
</script>