vue-async-data
vue-async-data copied to clipboard
Async data loading plugin
`vm.$set` is only an alias to `Vue.set`, which means that `self` is not `this`, it has to be passed as first argument.
Hello, Is it possible to add the compatibility of this module for Vue 2.x ?
当使用继承时候, 生命周期compile会重复调用
In vue 1.0.21 there is still mechanism, that throws "[vue-async-data] not installed!" warning while using vue-async-data as mixin. ``` import VueAsyncData from 'vue-async-data'; export default { mixins: [ VueAsyncData.mixin, ],...
Maybe loading data asynchronously is more a common case. I think Vue's core should implement this function, instead of making a plugin. e.g. We can pass `data` a function which...
Please can this package be added to bower. The other official plugins have been added, so it would make sense if this was added as well. Thanks.
Hello @yyx990803. I think will be better if this plugin will have a support for [RxJS](https://github.com/Reactive-Extensions/RxJS)
In order to better match the other vue packages
When I try to broadcast event from asyncData I receive no event to child component. ``` // Parent with async data plugin asyncData: function () { var self = this;...