File tree 2 files changed +37
-2
lines changed 2 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div class =" cookie-consent" ><p >This website uses cookies to ensure you get the best experience on our website.
3
+ <a
4
+ href =" https://cookiesandyou.com/"
5
+ target =" _blank" >Learn More
6
+ </a > </p ></div >
7
+ </template >
8
+
9
+ <script >
10
+ export default {
11
+ data () {
12
+ return {
13
+ titulo: ' Hola'
14
+ };
15
+ }
16
+ };
17
+ </script >
18
+
19
+ <style lang="stylus" scoped>
20
+ .cookie-consent
21
+ position : fixed ;
22
+ width : 100% ;
23
+ height : 10% ;
24
+ top : 90% ;
25
+ color : #f f f ;
26
+ background-color : #00 3e a5 ;
27
+ z-index : 90 ;
28
+ display : flex ;
29
+ align-items : center ;
30
+ justify-content : center ;
31
+
32
+ </style >
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<v-app id =" app" >
3
+ <cookie-consent />
3
4
<v-navigation-drawer
4
5
:clipped =" clipped"
5
6
v-model =" drawer"
73
74
<script >
74
75
import HomeHeader from " ~/components/HomeHeader/Index.vue" ;
75
76
import HomeFooter from " ~/components/HomeFooter/Index.vue" ;
77
+ import CookieConsent from " ~/components/Cookieconsent/Index.vue" ;
76
78
77
79
export default {
78
80
components: {
79
81
HomeHeader,
80
- HomeFooter
82
+ HomeFooter,
83
+ CookieConsent
81
84
},
82
85
data () {
83
86
return {
@@ -97,7 +100,7 @@ export default {
97
100
}
98
101
},
99
102
created () {
100
- this .cookies ();
103
+ // this.cookies();
101
104
},
102
105
methods: {
103
106
cookies () {
You can’t perform that action at this time.
0 commit comments