vue-frappe-formbuilder-health
Version:
Vue Form Builder PRO MAX built from top of Vue. Super dynamic and flexible including Drag and Drop feature.
31 lines (26 loc) • 536 B
JavaScript
/**
* Base extendation for the Row-View - Form-Builder
*/
import {STYLE_INJECTION_MIXIN} from "@/mixins/style-injection-mixin";
const ROW_VIEW_MIXIN = {
mixins: [STYLE_INJECTION_MIXIN],
props: {
/**
* Section that belong to the current row
*/
section: {
type: Object,
required: true
},
/**
* Current row data
*/
row: {
type: Object,
required: true
},
},
}
export {
ROW_VIEW_MIXIN
}