mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
46 lines
1.3 KiB
Vue
46 lines
1.3 KiB
Vue
<template>
|
|
<div
|
|
v-if="isVisibleDisclaimer"
|
|
class="fixed bottom-0 left-0 right-0 z-20 w-full rounded-tl-xl rounded-tr-lg bg-white p-4 shadow-xl dark:bg-dark-foreground sm:left-16 sm:right-auto sm:w-56 sm:p-3"
|
|
>
|
|
<span @click="closeDisclaimer" class="absolute -right-1 -top-1 cursor-pointer p-3">
|
|
<x-icon size="10" />
|
|
</span>
|
|
<i18n path="cookie_disclaimer.description" tag="p" class="text-xs">
|
|
<router-link :to="{ name: 'DynamicPage', params: { slug: 'cookie-policy' } }" class="text-theme text-xs">
|
|
{{ $t('cookie_disclaimer.button') }}
|
|
</router-link>
|
|
</i18n>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { XIcon } from 'vue-feather-icons'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'CookieDisclaimer',
|
|
components: {
|
|
XIcon,
|
|
},
|
|
computed: {
|
|
...mapGetters(['config']),
|
|
},
|
|
data() {
|
|
return {
|
|
isVisibleDisclaimer: false,
|
|
}
|
|
},
|
|
methods: {
|
|
closeDisclaimer() {
|
|
localStorage.setItem('isHiddenDisclaimer', 'true')
|
|
|
|
this.isVisibleDisclaimer = false
|
|
},
|
|
},
|
|
created() {
|
|
this.isVisibleDisclaimer = !localStorage.getItem('isHiddenDisclaimer')
|
|
},
|
|
}
|
|
</script>
|