ant-design-vue/components/spin/demo/delayAndDebounce.md

45 lines
987 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<cn>
#### 延迟
延迟显示 loading 效果。当 spinning 状态在 `delay` 时间内结束,则不显示 loading 状态。
</cn>
<us>
#### delay
Specifies a delay for loading state. If `spinning` ends during delay, loading status won't appear.
</us>
```html
<style scoped>
.spin-content{
border: 1px solid #91d5ff;
background-color: #e6f7ff;
padding: 30px;
}
</style>
<template>
<div>
<a-spin :spinning="spinning" :delay="delayTime">
<div class="spin-content">
可以点击‘切换’按钮,延迟显示 loading 效果。当 spinning 状态在 `delay` 时间内结束,则不显示 loading 状态。
</div>
</a-spin>
Loading state<a-switch v-model="spinning"></a-switch>
</div>
</template>
<script>
export default {
data () {
return {
spinning: false,
delayTime: 500,
}
},
methods: {
changeSpinning(){
this.spinning = !this.spinning
}
},
}
</script>
```