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