UNPKG

@krobotech/v-form-builder

Version:

Vue Form Builder PRO MAX built from top of Vue. Super dynamic and flexible including Drag and Drop feature.

31 lines (25 loc) 626 B
import {STYLE_INJECTION_MIXIN} from "@/mixins/style-injection-mixin"; import IconTooltip from "@/views/builder/misc/IconTooltip"; const CONTROL_SPECIAL_CONFIG_MIXIN = { components: {IconTooltip}, mixins: [STYLE_INJECTION_MIXIN], props: { /** * Control Object Configuration */ control: { type: Object, required: true }, /** * Form-Data from the ROOT */ formData: { type: Object, required: true } }, } export{ CONTROL_SPECIAL_CONFIG_MIXIN }