UNPKG

vue-frappe-formbuilder-health

Version:

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

47 lines (36 loc) 867 B
import ControlView from "@/views/renderer/ControlView"; import {STYLE_INJECTION_MIXIN} from "@/mixins/style-injection-mixin"; const RENDERER_SECTION_VIEW_MIXIN = { components: { ControlView // Show Control }, mixins: [STYLE_INJECTION_MIXIN], props: { section: Object, rows: Object, controls: Object, valueContainer: Object, validationErrors: Object, reference:Object, readonly:{type: Boolean,default:false} }, data: () => ({ }), methods: { }, computed: { /** * Classes for draggable * @returns {(string|string)[]} */ containerClasses() { return [ this.styles.ROW, 'control-list-container' ] } }, }; export { RENDERER_SECTION_VIEW_MIXIN }