18.7.9 • Published 6 years ago

@seregpie/vueasynccomputed v18.7.9

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

VueAsyncComputed

...

demo

Try it out!

dependencies

setup

npm

npm install @seregpie/vueasynccomputed

ES module

Install the plugin globally.

import Vue from 'vue';
import VueAsyncComputed from '@seregpie/vueasynccomputed';

Vue.use(VueAsyncComputed);

or

Register the plugin in the scope of another instance.

import VueAsyncComputed from '@seregpie/vueasynccomputed';

export default {
  // ...
  mixins: [VueAsyncComputed],
};

browser

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/@seregpie/vueasynccomputed"></script>

If Vue is detected, the plugin will be installed automatically.

usage

...