Skip to content

Version 2.0.10

Compare
Choose a tag to compare
@yariksav yariksav released this 24 Aug 15:41
· 30 commits to master since this release

Fixed Snackbar actions in 3b71f0c, closed #97

Usage example

               const clicked = await this.$dialog.message.info('Are yo sure?', {
                  actions: {
                    no: {
                      text: 'No',
                      flat: true,
                      handler: () => {
                        console.log('no')
                      }
                    },
                    yes: {
                      text: 'Yes',
                      handler: () => {
                        console.log('yes')
                      }
                    }
                  }
                })
                console.log(clicked)