knackjason

Results 7 comments of knackjason

I've been able to do this in my router by calling `Vue.prototype.$snotify.success(...)`.

Have you tried accessing $snotify directly from Vue? It's a little hacky but should work. ```javacscript actions: { async errorHandler (error) { Vue.prototype.$snotify.error(error) // and if multiple errors, then while...

I ran into a similar problem today. In my store's state, I had `user: null`. This gets set to an Object after the user logs in. Everything worked fine initially....

@MikaelEdebro I'm also seeing this issue. Below are the relevant parts of my `.vue` file. Ignore the manual mounting. I just have to do that for my particular application. ```vue...

I just ran into this exact same problem, but figured out a way around it. The trick is to tell Font Awesome to nest the `` element under the ``...

Any chance we can get the latest version pushed to npm? I just spent 30 mins trying to figure out why my wizard always had the title slot while the...

BTW, @ptdev, you can hide the wizard header with some CSS, which is what I resorted to for the time being. ```css .wizard-header { display: none; } ```