Skip to content

Template helpers

The design system also exports helpers intended to be plugged into createGridTemplates(...).

Available helpers

  • templateFormAddButton
  • templateFormRemoveButton
  • templateFormResetButton
  • templateFormNextButton
  • templateFormPreviousButton
  • templateFormSelect

Example

ts
ts
import {
	templateFormAddButton,
	templateFormNextButton,
	templateFormPreviousButton,
	templateFormRemoveButton,
	templateFormResetButton,
	templateFormSelect,
} from "@duplojs/form/vueDesignSystem";

export {
	templateFormAddButton,
	templateFormNextButton,
	templateFormPreviousButton,
	templateFormRemoveButton,
	templateFormResetButton,
	templateFormSelect,
};

Usefulness

  • quickly wire the actions of repeat
  • wire the navigation of step
  • wire the selector of union

These helpers do not replace the components themselves. They simply provide ready-to-use adapters for the grid templates.

Released under the MIT License.