mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
a6620cbbe5
* feat: add Vue.use feat * feat: Vue.use method * docs: update docs
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
import Spin, { setDefaultIndicator } from './Spin'
|
|
|
|
export { SpinProps } from './Spin'
|
|
|
|
Spin.setDefaultIndicator = setDefaultIndicator
|
|
|
|
/* istanbul ignore next */
|
|
Spin.install = function (Vue) {
|
|
Vue.component(Spin.name, Spin)
|
|
}
|
|
|
|
export default Spin
|