coreui-form
Version:
34 lines (24 loc) • 553 B
JavaScript
let HelpersFieldsPropertiesShow = {
_show : null,
/**
* Установка поля
* @param {boolean|null} show
* @return self
*/
setShow(show = null) {
if (show === null) {
this._show = null;
} else {
this._show = !! show;
}
return this;
},
/**
* Получение поля
* @return {boolean|null}
*/
getShow() {
return this._show;
}
}
export default HelpersFieldsPropertiesShow;