VDS

Vtiger Design System (a.k.a VDS) provides core HTML components as part of VTAP. These components can be used when creating your custom pages, widgets, popups.

v-select2

Drop-down component with options.

<v-select2 :required=true :emptyOption=false 
    v-model="" :multiple=false :options=""></v-selec2>
PropertyTypeDefaultDescription
requiredboolfalsetrue - mandatory, false - optional
emptyOptionboolfalsetrue - show empty option, false - otherwise
v-modelstring-store the choice made into variable
multipleboolfalsetrue - allow multiple selection, false - otherwise
optionsobject-list of map: [ {label: 'Private', value: 'private'}. {label: 'Public', value: 'public'} ]