Fix path and names for Profile section
This commit is contained in:
32
src/views/Profile/account/Phone.vue
Normal file
32
src/views/Profile/account/Phone.vue
Normal 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>
|
||||
Reference in New Issue
Block a user