add-canvas-nuxt3-complete
tip
This section gets you to activating canvas as quickly as possible. It does not explain each line of code.
Edit the following file:
/pages/index.vue
<script lang="ts" setup>
import content from "../content/content.json";
import doEnhance from "../lib/enhancer";
import resolveRenderer from "../lib/resolveRenderer";
import LayoutCanvas from "../components/LayoutCanvas.vue";
const slug = "/";
const topic = content.find((e) => e.url == slug);
const { composition } = await useUniformComposition({
slug,
enhance: async (c) => await doEnhance(c),
});
</script>
<template>
<UniformComposition
v-if="composition"
:data="composition"
:resolve-renderer="resolveRenderer"
>
<LayoutCanvas :title="topic.fields.title" />
</UniformComposition>
</template>
About this step
This is the completed page file.