notice Support the notice function, such as toast, alert, confirm, prompt. You can customize the style of the notice components. If you want to use these components in your project, you should write styles firstly. See detail
toast bekit.notice.toast(options) Arguments:
{String | Object} options options Property Type Detail Default Required message String The content '' yes type String Valid value: info、warning、success、error info no iconClass String the class of icon befor the message bicon no duration Number Duration time 2500 no timeWait Number After notice, the delay time of clearing the component 200 no
Usage messageBox bekit.notice.messageBox(options) Arguments:
Returns: {Promise} options Property Type Detail Default Required title String Notice title '' no message String Notice content '' no showCancelButton boolean If show the cancel button true no cancelButtonText String The text of the cancel button '取消' no confirmButtonText String The text of the confirm button '确定' no cancelButtonClass String The class of the cancel button 'b-btn b-btn-cancel' no confirmButtonClass String The class of the confirm button 'b-btn b-btn-confirm' no showInput boolean If show the input false no inputPattern RegExp The pattern of input null no inputErrorMessage String The error message of input '' no
Usage alert bekit.notice.alert(message[, title, options]) Arguments:
{String} message {String} [title] {Object} [options] Returns: {Promise} Detail: Simulate the native function of alert options Property Type Detail Default Required confirmButtonText String The text of confirm button '确定' no confirmButtonClass String The class of confirm button 'b-btn b-btn-confirm' no
Usage confirm bekit.notice.confirm(message[, title, options]) Arguments:
{String} message {String} [title] {Object} [options] Returns: {Promise} Detail: Simulate the native function of confirm options Property Type Detail Default Required cancelButtonText String The text of cancel button '取消' no confirmButtonText String The text of confirm button '确定' no cancelButtonClass String The class of cancel button 'b-btn b-btn-cancel' no confirmButtonClass String The class of confirm button 'b-btn b-btn-confirm' no
Usage prompt bekit.notice.prompt(message[, title, options]) Arguments:
{String} message {String} [title] {Object} [options] Returns: {Promise} Detail: Simulate the native function of prompt options Property Type Detail Default Required cancelButtonText String The text of cancel button '取消' no confirmButtonText String The text of confirm button '确定' no cancelButtonClass String The class of cancel button 'b-btn b-btn-cancel' no confirmButtonClass String The class of confirm button 'b-btn b-btn-confirm' no inputPattern RegExp The pattern of input null no inputErrorMessage String The error message of input '' no
Usage Last Updated: 12/28/2021, 1:26:02 PM