24 lines
472 B
Markdown
24 lines
472 B
Markdown
<cn>
|
|
#### ้ๆฉๅพ็
|
|
ๅฏไปฅ้่ฟ่ฎพ็ฝฎ `image` ไธบ `Empty.PRESENTED_IMAGE_SIMPLE` ้ๆฉๅฆไธ็ง้ฃๆ ผ็ๅพ็ใ
|
|
</cn>
|
|
|
|
<us>
|
|
#### Chose image
|
|
You can choose another style of `image` by setting image to `Empty.PRESENTED_IMAGE_SIMPLE`.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<a-empty :image="simpleImage" />
|
|
</template>
|
|
<script>
|
|
import { Empty } from 'ant-design-vue';
|
|
export default {
|
|
beforeCreate() {
|
|
this.simpleImage = Empty.PRESENTED_IMAGE_SIMPLE;
|
|
},
|
|
};
|
|
</script>
|
|
```
|