0👍
Try this
<template>
<v-img :src="imageSrc">
<template #placeholder>
No image
</template>
</v-img>
</template>
<script>
export default {
...
mounted() {
try {
this.imageSrc = require(...);
} catch (e) {
this.imageSrc = null;
}
},
};
</script>
- [Vuejs]-Customizing the height of a bootstrap-vue Sidebar
- [Vuejs]-How to store selected value in Vuex store
Source:stackexchange.com