18.7.9 • Published 7 years ago
@seregpie/vueasynccomputed v18.7.9
VueAsyncComputed
...
demo
dependencies
setup
npm
npm install @seregpie/vueasynccomputedES 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
...