mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
import Spin, { setDefaultIndicator } from './Spin';
|
|
import Base from '../base';
|
|
|
|
export { SpinProps } from './Spin';
|
|
|
|
Spin.setDefaultIndicator = setDefaultIndicator;
|
|
|
|
/* istanbul ignore next */
|
|
Spin.install = function(Vue) {
|
|
Vue.use(Base);
|
|
Vue.component(Spin.name, Spin);
|
|
};
|
|
|
|
export default Spin;
|