All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #322 | Page horaire | ## Description de la PR [#322] Page horaire ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #4 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
19 lines
420 B
Vue
19 lines
420 B
Vue
<template>
|
|
<input
|
|
v-model="model"
|
|
type="text"
|
|
:placeholder="placeholder"
|
|
class="h-10 w-full max-w-md rounded-md border border-neutral-300 bg-white px-3 text-md text-neutral-900"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const model = defineModel<string>({ required: true })
|
|
|
|
withDefaults(defineProps<{
|
|
placeholder?: string
|
|
}>(), {
|
|
placeholder: 'Chercher un employé (nom ou prénom)'
|
|
})
|
|
</script>
|