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