UNPKG

298 BJavaScriptView Raw
1import VueFunLoading from './components/VueFunLoading';
2
3const install = function (Vue, opts = {}) {
4 if (install.installed) return;
5
6 Vue.component(VueFunLoading.name, VueFunLoading);
7};
8
9if (typeof window !== 'undefined' && window.Vue) {
10 install(window.Vue);
11}
12
13export default install;