For the complete documentation index, see llms.txt. This page is also available as Markdown.

Partial view

Partial - Example

import Ingress from "@/templates/views/blocks/Ingress";

const { item: ingressItem } = this.partial({ myText: Ingress }, {
    title: "Lorem ipsum dolor",
    description: "Lorem ipsum dolor sit amet"
});

item.setFields({
    textComponent: ingressItem,
    firstname: {
        type: "text",
        label: "Headline",
    }
});

Last updated