pull in content group widget for bold font

This commit is contained in:
Kroell 2023-02-24 14:15:03 -05:00
parent 3b7f1151df
commit f463992367

View file

@ -15,10 +15,9 @@
justifyText="center"
class="mt-4 mb-4"
/>
<textBlock
cmsWidgetName="continueWithSchedulingCopy"
typeStyle="body"
class="mt-0"
<div
v-html="continueWithSchedulingBodyText"
class="mt-0"
/>
<textBlock
cmsWidgetName="whatHappensNextCopy"
@ -72,6 +71,11 @@ export default {
data() {
return {};
},
computed: {
continueWithSchedulingBodyText() {
return this.getCmsContent('continueWithSchedulingCopy', 'BodyText');
}
},
async beforeRouteEnter(to, from, next) {
const cmsContentPromise = fetchCmsContentForPage(to.query.issPage);