imep-vue-form-builder
Version:
Vue Form Builder PRO MAX built from top of Vue. Super dynamic and flexible including Drag and Drop feature.
25 lines (21 loc) • 486 B
JavaScript
const ALERT_DIALOG = {
/**
* Show Alert Dialog
* @param message
* @param stopTime
*/
show(message, stopTime = 3000) {
const alert = document.createElement('div')
alert.className = 'v-form-alert'
alert.innerText = message
document.getElementsByTagName('body')[0].append(
alert
)
setTimeout(function () {
alert.remove()
}, stopTime || 3000)
}
}
export {
ALERT_DIALOG
}