Files
DiceCloud/app/imports/ui/components/global/SmartSelect.vue
2019-02-07 13:53:44 +02:00

21 lines
395 B
Vue

<template lang="html">
<v-select
v-bind="$attrs"
:loading="loading"
:error-messages="errorMessages"
:value="safeValue"
:menu-props="{auto: true, lazy: true}"
@change="change"
@focus="focused = true"
@blur="focused = false"
/>
</template>
<script>
import SmartInput from '/imports/ui/components/global/SmartInput.js';
export default {
mixins: [SmartInput],
};
</script>