15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
![]() |
import { App } from 'vue';
|
||
![]() |
import Spin, { setDefaultIndicator } from './Spin';
|
||
![]() |
|
||
![]() |
export { SpinProps } from './Spin';
|
||
![]() |
|
||
![]() |
Spin.setDefaultIndicator = setDefaultIndicator;
|
||
![]() |
|
||
|
/* istanbul ignore next */
|
||
![]() |
Spin.install = function(app: App) {
|
||
![]() |
app.component(Spin.name, Spin);
|
||
![]() |
return app;
|
||
![]() |
};
|
||
![]() |
|
||
![]() |
export default Spin;
|