vue-async-data icon indicating copy to clipboard operation
vue-async-data copied to clipboard

Using VueAsyncData.mixin throws "[vue-async-data] not installed!" warning.

Open tomasz-szymanek opened this issue 9 years ago • 0 comments

In vue 1.0.21 there is still mechanism, that throws "[vue-async-data] not installed!" warning while using vue-async-data as mixin.

<script>
import VueAsyncData from 'vue-async-data';

export default {
  mixins: [
    VueAsyncData.mixin,
  ],
...
  asyncData(resolve, reject) {
    CustomDataService.getItems().then(...

but it works properly!

tomasz-szymanek avatar Aug 21 '16 11:08 tomasz-szymanek