Fix path and names for Profile section

This commit is contained in:
2024-08-15 16:30:39 -04:00
parent 3fcf9bd67d
commit 7afa5d78cb
20 changed files with 25 additions and 25 deletions

View File

@@ -0,0 +1,32 @@
<template>
<div class="pb-5 text-2xl">Numéro de téléphone</div>
<v-text-field
variant="outlined"
v-model="cellNumber"
label="Numéro de cellulaire"
outlined
></v-text-field>
<v-text-field
variant="outlined"
v-model="workNumber"
label="Numéro au travail"
outlined
></v-text-field>
<div class="flex justify-end space-x-4">
<v-btn variant="plain" color="black">Annuler</v-btn>
<v-btn color="#A6147D" >Enregistrer</v-btn>
</div>
</template>
<script setup>
import { ref } from 'vue';
const cellNumber = ref('');
const workNumber = ref('');
</script>
<style scoped>
</style>