diff --git a/src/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question.vue b/src/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question.vue index 68dc5e7b4..4fb06a201 100644 --- a/src/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question.vue +++ b/src/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question.vue @@ -16,11 +16,6 @@ import { storeActions } from "@/constants/store-actions.js"; import baseMixin from "@/mixins/base-mixin.js"; export default { name: "vehicle-protected-question", - data() { - return { - answers: ["Yes", "No"], - }; - }, props: { modelValue: String, cmsWidgetName: String, @@ -40,6 +35,9 @@ export default { this.$emit("update:modelValue", newValue); }, }, + answers() { + return this.getCmsContent(this.cmsWidgetName, "Answers"); + }, }, methods: { loadInitialData() { @@ -51,3 +49,16 @@ export default { }, }; + +