mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
18 lines
390 B
Vue
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>
|