Files
exchange-2.0/resources/assets/vue/components/general/elements/ErrorMessageComponent.vue
T
2021-06-18 00:32:58 +08:00

18 lines
406 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-14 scalled scalled text-danger">{{error}}</small>
</div>
</div>
</template>
<script>
export default {
props: {
error: {
required: true
}
}
}
</script>