* Add GAM integration & base for GPDR consent * Moved consent to a specific page. * Added functionality to the privacy page, and desactivate tracking if consent is not given. * Added GeoEdge support, and fixed auth issues * Fix actions issue * Fix actions issue, attempt 2 * Added a module for analytics with consent support. * Remove unnecessary function * Add support for runtime config
25 lines
322 B
Vue
25 lines
322 B
Vue
<template>
|
|
<Popup :show-popup="shown"> </Popup>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ReviewPopup',
|
|
data() {
|
|
return {
|
|
shown: false,
|
|
}
|
|
},
|
|
methods: {
|
|
show() {
|
|
this.shown = true
|
|
},
|
|
hide() {
|
|
this.shown = false
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|