You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
524 B

import { Loading } from './src/service.mjs';
export { Loading as ElLoadingService } from './src/service.mjs';
import { vLoading } from './src/directive.mjs';
export { vLoading as ElLoadingDirective, vLoading } from './src/directive.mjs';
import './src/types.mjs';
const ElLoading = {
install(app) {
app.directive("loading", vLoading);
app.config.globalProperties.$loading = Loading;
},
directive: vLoading,
service: Loading
};
export { ElLoading, ElLoading as default };
//# sourceMappingURL=index.mjs.map