vue-toast-confirm

1.2.4 • Public • Published

vue-toast-confirm

A simple dialog plugin that supports both dialog and toast modes, with customizable types and button texts, etc.

this.$toast()

 
this.$toast({
  type: 'error',
  msg: 'hahahaha',
  duration: 3000
})
 

this.$side()

 
this.$side({
  type: 'error',
  msg: 'hahahaha',
  duration: 3000
})
 

this.$confirm()

 
this.$confirm({
  type: 'error',
  title: 'This is title',
  content: 'This is the message area!',
  confirmText: 'ok',
  cancelText: 'no',
  confirm: () => {
    console.log('Your callback')
    this.$close()  //If you don't want to close the dialog, you can not use it.
  },
  cancel: () => {
    console.log('Your callback')
    this.$close()  //If you don't want to close the dialog, you can not use it.
  }
})
 
type toast confirm side
(null) alt
error alt alt alt
success alt alt alt
warnning alt alt alt

Package Sidebar

Install

npm i vue-toast-confirm

Weekly Downloads

2

Version

1.2.4

License

ISC

Unpacked Size

158 kB

Total Files

4

Last publish

Collaborators

  • sansiro