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