mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
12 lines
586 B
Vue
12 lines
586 B
Vue
<script setup lang="ts">
|
|
const value = ref('')
|
|
</script>
|
|
|
|
<template>
|
|
<UInput v-model="value" placeholder="" :ui="{ base: 'peer' }">
|
|
<label class="pointer-events-none absolute left-0 -top-2.5 text-highlighted text-xs font-medium px-1.5 transition-all peer-focus:-top-2.5 peer-focus:text-highlighted peer-focus:text-xs peer-focus:font-medium peer-placeholder-shown:text-sm peer-placeholder-shown:text-dimmed peer-placeholder-shown:top-1.5 peer-placeholder-shown:font-normal">
|
|
<span class="inline-flex bg-default px-1">Email address</span>
|
|
</label>
|
|
</UInput>
|
|
</template>
|