mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
23 lines
453 B
Vue
23 lines
453 B
Vue
<script setup lang="ts">
|
|
const value = ref('Click to clear')
|
|
</script>
|
|
|
|
<template>
|
|
<UInput
|
|
v-model="value"
|
|
placeholder="Type something..."
|
|
:ui="{ trailing: 'pe-1' }"
|
|
>
|
|
<template v-if="value?.length" #trailing>
|
|
<UButton
|
|
color="neutral"
|
|
variant="link"
|
|
size="sm"
|
|
icon="i-lucide-circle-x"
|
|
aria-label="Clear input"
|
|
@click="value = ''"
|
|
/>
|
|
</template>
|
|
</UInput>
|
|
</template>
|