15 lines
209 B
Vue
15 lines
209 B
Vue
<template>
|
|
<a-empty :image="emptyImg"></a-empty>
|
|
</template>
|
|
<script>
|
|
import emptyImg from '@/assets/images/global/no-data.png'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
emptyImg
|
|
}
|
|
}
|
|
}
|
|
</script>
|