forked from kernoeb/PlanningSup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DialogNewPlanning.vue
73 lines (70 loc) · 1.6 KB
/
DialogNewPlanning.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
<v-dialog
v-model="modelBadUrl"
:overlay-color="$vuetify.theme.dark ? 'white' : 'black'"
persistent
max-width="500"
>
<v-card>
<v-card-title class="text-h5">
Nouveau !
</v-card-title>
<v-card-text>
<div style="font-size: 17px;">
Le planning devient <b>PlanningSup</b> !
<br>
et change de nom de domaine :
<br>
<br>
<v-btn
style="text-transform: none"
href="https://planningsup.app"
outlined
>
PlanningSup.app
</v-btn>
<br><br>
C'est clairement plus simple à retenir et ça permet à d'autres écoles de venir ici <small>(pas que des IUTs)</small> :)
<br>
<small>(oublie pas d'ajouter en favoris)</small>
</div>
</v-card-text>
<v-card-actions>
<v-spacer />
<v-btn
color="grey"
text
@click="modelBadUrl = false"
>
Je m'en fiche
</v-btn>
<v-btn
color="green darken-1"
text
href="https://planningsup.app"
>
C'est parti !
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
<script>
export default {
name: 'DialogNewPlanning',
data () {
return {
modelBadUrl: false
}
},
mounted () {
setTimeout(() => {
if (document.domain === 'planningiut.herokuapp.com' || document.domain === 'planning.noewen.com') {
this.modelBadUrl = true
}
}, 10)
}
}
</script>
<style scoped>
</style>