0.0.8 • Published 3 years ago

@omiu/dialog-extention v0.0.8

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

DialogExtention

Pop alert, confirm or prompt in the middle of the page

Import

import '@omiu/dialog-extention'

Or use script tag to ref it.

<script src="https://unpkg.com/@omiu/dialog-extention"></script>

Usage

Omiu.alert({
  msg: 'Simple Message',
  title: 'Msg',
  confirmButtonText: 'OK',
  onConfirm: function () {
    console.log('ok')
  }
})

Omiu.confirm({
  msg: 'Simple Message',
  title: 'Msg',
  cancelButtonText: 'Cancel',
  confirmButtonText: 'OK',
  onCancel: function () {

  },
  onConfirm: function () {
    console.log('ok')
  }
})

Omiu.prompt({
  msg: 'Simple Message',
  title: 'Msg',
  cancelButtonText: 'Cancel',
  confirmButtonText: 'OK',
  onCancel: function () {

  },
  onConfirm: function (val) {
    console.log(val)
  }
})