25 lines
476 B
Vue
25 lines
476 B
Vue
<template>
|
|
<div class="pb-5 text-2xl">Lien Youtube</div>
|
|
|
|
<v-text-field
|
|
variant="outlined"
|
|
v-model="youtubeLink"
|
|
label="Votre lien Youtube"
|
|
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 youtubeLink = ref('');
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|