Skip to content

Commit

Permalink
feat: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
haoziqaq committed Aug 26, 2024
1 parent 1e7fab2 commit e07c538
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion packages/varlet-ui/src/auto-complete/AutoComplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,23 @@
:is-force-focusing-effect="isFocusing"
@input="handleInput"
v-model="value"
/>
>
<template #prepend-icon v-if="$slots['prepend-icon']">
<slot name="prepend-icon" />
</template>

<template #append-icon v-if="$slots['append-icon']">
<slot name="append-icon" />
</template>

<template #clear-icon v-if="$slots['clear-icon']">
<slot name="clear-icon" />
</template>

<template #extra-message v-if="$slots['extra-message']">
<slot name="extra-message" />
</template>
</var-input>

<template #options>
<div ref="optionsRef" :class="n('options')">
Expand Down

0 comments on commit e07c538

Please sign in to comment.