mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
27 lines
365 B
Vue
27 lines
365 B
Vue
<template>
|
|
<transition name="ds-input-error">
|
|
<div
|
|
class="ds-input-error"
|
|
v-show="!!error">
|
|
{{ error }}
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
* @version 1.0.0
|
|
* @private
|
|
*/
|
|
export default {
|
|
name: 'DsInputError',
|
|
props: {
|
|
error: {
|
|
type: String,
|
|
required: false,
|
|
default: null
|
|
}
|
|
}
|
|
}
|
|
</script>
|