2018-02-09 17:09:50 +08:00
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
| Property | Description | Type | Default Value |
|
|
|
|
| -------- | ----------- | ---- | ------------- |
|
|
|
|
| delay | specifies a delay in milliseconds for loading state (prevent flush) | number (milliseconds) | - |
|
2018-06-16 22:57:11 +08:00
|
|
|
| indicator | vue node of the spinning indicator | vNode \|slot | - |
|
2018-02-09 17:09:50 +08:00
|
|
|
| size | size of Spin, options: `small`, `default` and `large` | string | `default` |
|
|
|
|
| spinning | whether Spin is spinning | boolean | true |
|
|
|
|
| tip | customize description content when Spin has children | string | - |
|
|
|
|
| wrapperClassName | className of wrapper when Spin has children | string | - |
|
2018-09-05 21:28:54 +08:00
|
|
|
|
|
|
|
### Static Method
|
|
|
|
|
|
|
|
- `Spin.setDefaultIndicator({indicator})`
|
|
|
|
As `indicator`, you can define the global default spin element
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
Spin.setDefaultIndicator({
|
|
|
|
indicator: (h) => {
|
|
|
|
return <i class='anticon anticon-loading anticon-spin ant-spin-dot'></i>
|
|
|
|
},
|
|
|
|
})
|
|
|
|
or
|
|
|
|
Spin.setDefaultIndicator({
|
|
|
|
indicator: {
|
|
|
|
render () {
|
|
|
|
return <i class='anticon anticon-loading anticon-spin ant-spin-dot'></i>
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|