Files
shipping-portal/resources/assets/vue/components/general/elements/ErrorMessageComponent.vue
T
2021-07-21 16:10:07 +08:00

18 lines
390 B
Vue

<template>
<div class="row animate__animated animate__fadeInUpBig animate__fast align-items-center" v-if="error">
<div class="col">
<small class="bold fs-10 text-danger">{{error}}</small>
</div>
</div>
</template>
<script>
export default {
props: {
error: {
required: true
}
}
}
</script>