vue-fun-loading
Version:
all kinds of loading components of vue
14 lines (9 loc) • 298 B
JavaScript
import VueFunLoading from './components/VueFunLoading';
const install = function (Vue, opts = {}) {
if (install.installed) return;
Vue.component(VueFunLoading.name, VueFunLoading);
};
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
export default install;