feat: create login filterPresets

This commit is contained in:
kur0nek-o
2024-04-25 10:24:42 +07:00
parent 54c4d12c4f
commit 0fb6b50272
21 changed files with 1250 additions and 487 deletions

View File

@@ -0,0 +1,19 @@
<template>
<div class="relative w-full overflow-hidden bg-gray-200 rounded-lg">
<input
type="text"
:value="value"
:readonly="true"
class="w-full px-4 py-2 text-sm leading-6 text-gray-900 bg-gray-200 border-0 border-transparent rounded-lg placeholder:text-gray-400 outline-0 focus:outline-0 focus:border-0 focus:ring-0"
/>
</div>
</template>
<script setup lang="ts">
defineProps({
value: {
type: String,
required: true
}
})
</script>