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.

12 lines (11 loc) 210 B
/** * List-Item for Checkbox/Radio/Select */ export default class ListItem { value = "" text = "" constructor(value, text) { this.value = value this.text = text } }