vuejs-noty
vuejs-noty copied to clipboard
A Vue JS wrapper around Noty
There should be an XSS handling option. I was really shocked when I was testing and saw that vue-noty doesn't filter out HTML. This is not very hard to solve...
I'm attempting to add confirmation buttons to the dialog per https://ned.im/noty/#/confirm. When I try either ... `this.$noty.button('YES', 'btn', function () { console.debug('foo'); })` or `VueNoty.button('YES', 'btn', function () { console.debug('foo');...
Try run example from README.md ``` this.$noty.create({ text: 'This is a custom notification!', type: 'warning', layout: 'topCenter', timeout: 4500, progressBar: false }).show(); ``` throw error `TypeError: this.$noty.create is not a...
How to use vuejs-noty in html file? I try add ``` Vue.use(VueNoty); ``` but have error: `ReferenceError: VueNoty is not defined`
```javascript // plugins/noty.js import Vue from 'vue' import 'vuejs-noty/dist/vuejs-noty.css' const VueNoty = require('vuejs-noty') Vue.use(VueNoty, { timeout: 3000, progressBar: true, layout: 'topRight' }) ``` ```javascript // nuxt.config.js // If set ssr...
Bumps [webpack-bundle-analyzer](https://github.com/webpack-contrib/webpack-bundle-analyzer) from 2.8.2 to 3.3.2. Release notes *Sourced from [webpack-bundle-analyzer's releases](https://github.com/webpack-contrib/webpack-bundle-analyzer/releases).* > ## First test with Lerna monorepo > [th0r/webpack-bundle-analyzer#98](https://github-redirect.dependabot.com/th0r/webpack-bundle-analyzer/pull/98) Changelog *Sourced from [webpack-bundle-analyzer's changelog](https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md).* > ## 3.3.2 >...
If I'm using the onTemplate callback, currently I don't seem to be able to include custom components in my markup. Is there anyway to achieve this?
Trying to close all messages using this: `this.$noty.closeAll();` Receiving this error: `Uncaught TypeError: this.$noty.closeAll is not a function` All other methods (`this.$noty.success`, `this.$noty.error` etc) are working fine. Any idea why??...
The original noty has got a callback called 'onCloseClick', which is invoked if the noty is closed by the user clicking it.