25 lines
496 B
Vue
25 lines
496 B
Vue
<template>
|
|
<div class="pb-5 text-2xl">Page Web personnel</div>
|
|
|
|
<v-text-field
|
|
variant="outlined"
|
|
v-model="websiteLink"
|
|
label="Lien de votre page web personnel"
|
|
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 websiteLink = ref('');
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|