Athul Anil Thomas

Results 2 comments of Athul Anil Thomas

@Tobiasartz In vue3 use can use [VueUse](https://vueuse.org/core/asynccomputed/) to deal with async computed properties

@vzakharov just install the package and register it as a plugin `myPlugin.client.js` ```js import Vue from 'vue' import AsyncComputed from 'vue-async-computed' Vue.use(AsyncComputed) ``` then in your component, use `myComponent.vue` ```js...