UNPKG

balm-ui

Version:

A modular and customizable UI library based on Material Design and Vue 3

13 lines (11 loc) 302 B
export const optionFormatDefaultValue = { label: 'label', value: 'value' }; export const checkOptionFormat = (componentName, format) => { if (!(format.label && format.value)) { console.error( `[${componentName}]: Invalid option format ({ label: string; value: string })` ); } };