add: contacts module & actions to private list

This commit is contained in:
Alexandro Uc
2026-03-28 14:44:54 -06:00
parent 4cc8fd7082
commit 291dbd2f35
9 changed files with 455 additions and 10 deletions

View File

@@ -0,0 +1,43 @@
<script setup>
const props = defineProps({
saerch: {
type: [String]
},
placeholder: {
type: String,
}
})
defineEmits(['update:saerch'])
</script>
<template>
<div class="mb-4">
<input
class="custom-search"
type="search"
name="search"
:placeholder="placeholder"
:value="saerch"
@input="$event => $emit('update:saerch', $event.target.value)"
/>
</div>
</template>
<style scoped>
.custom-search {
width: 100%;
padding: 12px 16px;
border: 1px solid rgb(222, 214, 214);
border-radius: 5px;
}
.custom-search:focus {
outline: none;
border-color: rgb(217, 202, 202);
}
</style>