You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/spin/demo/tip.md

29 lines
455 B

7 years ago
<cn>
#### 自定义描述文案
自定义描述文案。
</cn>
<us>
#### Customized description
Customized description content.
</us>
```html
<style scoped>
.spin-content{
7 years ago
border: 1px solid #91d5ff;
background-color: #e6f7ff;
padding: 30px;
}
</style>
<template>
<div>
<a-spin tip="Loading...">
<div class="spin-content">
7 years ago
我的描述文案是自定义的。。。
</div>
</a-spin>
</div>
</template>
```