7299_testToMaster #351

Merged
alexm merged 321 commits from 7299_testToMaster into master 2024-05-07 05:36:02 +00:00
1 changed files with 1 additions and 6 deletions
Showing only changes of commit e0e5082e1e - Show all commits

View File

@ -55,6 +55,7 @@ const onEnterPress = () => {
:type="$attrs.type"
:class="{ required: $attrs.required }"
@keyup.enter="onEnterPress()"
:clearable="focus"
>
<template v-if="$slots.prepend" #prepend>
<slot name="prepend" />
@ -62,12 +63,6 @@ const onEnterPress = () => {
<template #append>
<slot name="append" v-if="$slots.append" />
<QIcon
name="close"
size="xs"
v-if="focus && value"
@click="value = null"
></QIcon>
</template>
</QInput>
</div>