mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-24 06:04:46 +00:00
19 lines
575 B
JavaScript
19 lines
575 B
JavaScript
import Loading from './src/service.mjs';
|
|
export { default as ElLoadingService } from './src/service.mjs';
|
|
import vLoading from './src/directive.mjs';
|
|
export { default as ElLoadingDirective, default as vLoading } from './src/directive.mjs';
|
|
|
|
const ElLoading = {
|
|
install(app) {
|
|
Loading._context = app._context;
|
|
vLoading._context = app._context;
|
|
app.directive("loading", vLoading);
|
|
app.config.globalProperties.$loading = Loading;
|
|
},
|
|
directive: vLoading,
|
|
service: Loading
|
|
};
|
|
|
|
export { ElLoading, ElLoading as default };
|
|
//# sourceMappingURL=index.mjs.map
|