Skip to main content
Version: v2.0

Create page

The create page is for creating a new record of a model. It is the page that is shown when you click on the "Add" button in the index page. The component structure of the create page is as follows:

ModelCreateForm

Changing the creatable fields

const globalOverrides = {
blog: {
create: {
ModelCreateForm: {
props: {
paths: ["title", "published_at"],
},
},
},
},
};