I have added a new window to create a new user.

This commit is contained in:
PascalMarchesseault
2024-08-05 22:25:54 -04:00
parent f9d8e724fc
commit b83db5b33b
6 changed files with 157 additions and 18 deletions

View File

@@ -23,7 +23,7 @@ function unsubscribeFromCreator() {
<template>
<template v-if="isSubscribe">
<v-btn class="action"
<v-btn class="action mr-4"
@click="subscribeToCreator()"
style="transition: background-color 0.3s ease;">
S'ABONNER
@@ -31,7 +31,7 @@ function unsubscribeFromCreator() {
</template>
<template v-else>
<v-btn class="action"
<v-btn class="action mr-4"
@click="unsubscribeFromCreator()"
style="transition: background-color 0.3s ease;">
SE DESABONNER
@@ -43,7 +43,11 @@ function unsubscribeFromCreator() {
<style scoped>
.action {
@apply py-2 px-4 rounded bg-gray-100 hover:bg-gray-300
}
@apply py-2 px-4 rounded bg-gray-100 hover:bg-gray-300
}
</style>