Skip to content
Snippets Groups Projects

Draft: Implement @nuxt/content v3

Open Nathan Dubord requested to merge content-v3 into main
Compare and
40 files
+ 2296
9907
Compare changes
  • Side-by-side
  • Inline
Files
40
@@ -33,18 +33,20 @@ const props = defineProps<NextStepsProps>();
const { locale } = useI18n();
const { data } = await useAsyncData('next-steps', () =>
queryContent(`/shared/${locale.value.toLocaleLowerCase()}/next-steps`).findOne(),
queryCollection('shared').where('stem', '=', `shared/${locale.value}/next-steps`).first(),
);
const nextStepData = data?.value?.body;
if (!data) {
throw new Error(`Error with NextSteps component content`);
}
const content = computed(() => ({
header: props.header || data.value.header,
blurb: props.blurb || data.value.blurb,
button: props.button || data.value.button,
secondaryButton: props.secondaryButton || data.value.secondaryButton,
header: props.header || nextStepData.header,
blurb: props.blurb || nextStepData.blurb,
button: props.button || nextStepData.button,
secondaryButton: props.secondaryButton || nextStepData.secondaryButton,
}));
const buttonHref = computed(() => updateFreeTrialGlmContent(content.value.button?.config.href || ''));
Loading