@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
9 lines • 487 B
JavaScript
import { inklineGlobals } from '../../plugin.mjs';
export function defaultPropValue(componentName, propertyName, propertyValue = '') {
return () => inklineGlobals.prototype
? (inklineGlobals.prototype.options.componentOptions[componentName]?.[propertyName]
? inklineGlobals.prototype.options.componentOptions[componentName][propertyName]
: inklineGlobals.prototype.options[propertyName])
: propertyValue;
}
//# sourceMappingURL=default.mjs.map