JSFiddle - React, Tailwind, and code Playground
HTML
<div id="app">
<img ref="img" src="lala" @error="error('img')" alt="">
</div>
JavaScript
new Vue({
el: '#app',
methods: {
error (img) {
this.$refs[img].src = 'https://vuejs.org/images/logo.png'
}
}
})