28 lines
532 B
Vue
28 lines
532 B
Vue
<template lang="html">
|
|
<v-select
|
|
v-bind="$attrs"
|
|
:loading="loading"
|
|
:error-messages="errors"
|
|
:value="safeValue"
|
|
:menu-props="{auto: true, lazy: true}"
|
|
:disabled="isDisabled"
|
|
outlined
|
|
@change="change"
|
|
@focus="focused = true"
|
|
@blur="focused = false"
|
|
>
|
|
<slot
|
|
slot="prepend"
|
|
name="prepend"
|
|
/>
|
|
</v-select>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
import SmartInput from '/imports/ui/components/global/SmartInputMixin.js';
|
|
|
|
export default {
|
|
mixins: [SmartInput],
|
|
};
|
|
</script>
|