API templatesGrid
This section documents the default grid templates provided by @duplojs/form/vueGrid.
They are ready-to-use implementations of the following templates:
forminputmulticheckrepeatunionstepsection
What vueGrid is for
vueGrid provides:
- a
createGridTemplates(...)factory; - already implemented Vue template components;
- shared configuration props such as
columns,maxColumns, andgap.
Pages in this section
- createGridTemplates
- GridFormTemplate
- GridInputTemplate
- GridMultiTemplate
- GridCheckTemplate
- GridRepeatTemplate
- GridUnionTemplate
- GridStepByStepTemplate
- GridSectionTemplate
Shared props
GridTemplateContainerProps
ts
{
maxColumns?: number;
gap?: number;
}GridTemplateLayoutProps
ts
{
columns?: number;
}GridTemplateLayoutContainerProps
ts
{
maxColumns?: number;
gap?: number;
columns?: number;
}What to remember
vueGridis not required;- these templates are only default implementations;
- each template can be replaced or overridden independently.
