Rename quote-modal to modal and move to common-components folder.

This commit is contained in:
Bryan Mauger 2022-08-25 09:15:40 -04:00
parent 50b868c0cc
commit 5af0e6855e
2 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@
<script> <script>
import textLink from "@/ux-components/text-link/text-link"; import textLink from "@/ux-components/text-link/text-link";
export default { export default {
name: 'quoteModal', name: 'modal',
props: { props: {
headlineText: String, headlineText: String,
cmsWidgetName: String, cmsWidgetName: String,

View file

@ -20,7 +20,7 @@
@ForwardClicked="forwardButtonAction" @ForwardClicked="forwardButtonAction"
/> />
</div> </div>
<quoteModal <modal
cmsWidgetName="EstimateRainDefenseModal" cmsWidgetName="EstimateRainDefenseModal"
/> />
</div> </div>
@ -34,7 +34,7 @@ import funnelFooter from "@/common-components/funnel-footer/funnel-footer";
import vehicleBanner from "@/common-components/vehicle-banner/vehicle-banner"; import vehicleBanner from "@/common-components/vehicle-banner/vehicle-banner";
import funnelSubHeader from "@/common-components/funnel-sub-header/funnel-sub-header"; import funnelSubHeader from "@/common-components/funnel-sub-header/funnel-sub-header";
import radioServicePackage from "@/ux-components/radio-service-package/radio-service-package"; import radioServicePackage from "@/ux-components/radio-service-package/radio-service-package";
import quoteModal from "@/layouts/quote/quote-modal/quote-modal.vue"; import modal from "@/common-components/modal/modal.vue";
import cashOrInsuranceQuestion from "./cash-or-insurance-question/cash-or-insurance-question"; import cashOrInsuranceQuestion from "./cash-or-insurance-question/cash-or-insurance-question";
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper"; import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
@ -80,7 +80,7 @@ export default {
funnelSubHeader, funnelSubHeader,
Form, Form,
radioServicePackage, radioServicePackage,
quoteModal, modal,
}, },
}; };