Skip to content
Snippets Groups Projects

Draft: Implement @nuxt/content v3

Open Nathan Dubord requested to merge content-v3 into main
Compare and
21 files
+ 1588
1310
Compare changes
  • Side-by-side
  • Inline
Files
21
@@ -31,18 +31,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 { disableSecondaryButton = false } = props;
Loading