Skip to main content
Version: v3.0

Show page

The show page is for showing a single record of a model. It is the page that is shown when you click on a record in the index page. The component structure of the show page is as follows:

Changing displayed fields

const rhinoConfig = {
version: 1,
components: {
create: {
ModelShow: {
props: {
paths: ["title", "published_at"],
},
},
},
},
};

Horizontal layout

const rhinoConfig = {
version: 1,
components: {
ModelDisplayGroup: ModelDisplayGroupHorizontal
}
}