implemented search

This commit is contained in:
2025-06-19 14:47:42 +02:00
parent 62ddc33290
commit 25f63d30be
24 changed files with 604 additions and 175 deletions

View File

@ -8,6 +8,7 @@
:rules
:type="type"
:with-copy-button
@keyup="(e) => $emit('keyup', e)"
>
<template #append>
<slot name="append" />
@ -38,6 +39,10 @@ defineProps<{
withCopyButton?: boolean
}>()
defineEmits<{
keyup: [KeyboardEvent]
}>()
const type = ref<'password' | 'text'>('password')
const tooglePasswordType = () => {

View File

@ -8,6 +8,7 @@
:rules
:with-copy-button
v-model.trim="value"
@keyup="(e) => $emit('keyup', e)"
>
<template #append>
<UiButton
@ -38,6 +39,10 @@ defineProps({
withCopyButton: Boolean,
read_only: Boolean,
})
defineEmits<{
keyup: [KeyboardEvent]
}>()
</script>
<i18n lang="json">