vuex-flash icon indicating copy to clipboard operation
vuex-flash copied to clipboard

VueJs Flash Message Component within Vuex

Results 6 vuex-flash issues
Sort by recently updated
recently updated
newest added

``` vue.runtime.esm.js?2b0e:619 [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included...

The demo domain - https://ahmed-dinar.github.io/vuex-flash shows an expiration page ![Screenshot 2019-10-30 at 11 34 40](https://user-images.githubusercontent.com/9140811/67846101-4dcbf380-fb09-11e9-8fb3-1a79e43f491c.png)

I gave defined a global action to be taken if the user hits 401 like this: ``` import axios from 'axios' Vue.prototype.$axios = axios; axios.interceptors.response.use(function(response) { return response; }, function(error)...

I am using this inside axios `self.flash({ message: 'Successful.', variant: 'success' }) self.$router.push('/')` ``

Hi, I'm trying to use your component with vuetify framework but I have problems with the style: ![image](https://user-images.githubusercontent.com/23049412/35668512-12036a44-0732-11e8-94d2-14fcaa79947a.png) If I put some style of Vuetify, like `class="red"`, it looks fine...

The plugin works when I do router push to another location, however, it does not work if I want alert to show right away. For example, I am using danger...