tiny-vue/examples/sites/demos/mobile-first/app/image/load-error.vue

24 lines
401 B
Vue

<template>
<tiny-image :src="url1" @error="errorHandler" :image-size="200"></tiny-image>
</template>
<script>
import { Image, Modal } from '@opentiny/vue'
export default {
components: {
TinyImage: Image
},
data() {
return {
url1: ''
}
},
methods: {
errorHandler() {
Modal.message({ message: '加载失败触发事件', status: 'info' })
}
}
}
</script>