Files
DiceCloud/app/imports/ui/components/global/TextField.vue
2020-06-05 22:39:21 +02:00

23 lines
425 B
Vue

<template lang="html">
<v-text-field
ref="input"
v-bind="$attrs"
:loading="loading"
:error-messages="errors"
:value="safeValue"
:disabled="isDisabled"
box
@input="input"
@focus="focused = true"
@blur="focused = false"
/>
</template>
<script>
import SmartInput from '/imports/ui/components/global/SmartInputMixin.js';
export default {
mixins: [SmartInput],
};
</script>