UNPKG

imep-vue-form-builder

Version:

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

14 lines (13 loc) 276 B
/** * List-Item for Checkbox/Radio/Select */ export default class ListItem { value = "" text = "" show_section = [] constructor(value, text, show_section) { this.value = value this.text = text this.show_section = show_section } }