mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
16 lines
316 B
Vue
16 lines
316 B
Vue
<template>
|
|
<UInput
|
|
v-model="name"
|
|
:maxlength="maxLength"
|
|
>
|
|
<template #trailing>
|
|
<span class="text-xs text-gray-500 dark:text-gray-400">{{ name.length }}/{{ maxLength }}</span>
|
|
</template>
|
|
</UInput>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const name = ref('')
|
|
const maxLength = 10
|
|
</script>
|