

const app = new Vue({
	el: '#cookieBanner',
	data () {
		return {
			showCookie: true
		}
	},
	methods: {
		activateCookie () {
			$.get('/json/v2/webclient/cookie').then(({ data }) => {
				if (data) {
					this.showCookie = false
				}
			})
		},
		cancelCookie () {
			$.get('/json/v2/webclient/cookie').then(({ data }) => {
				console.log('Saving essential cookies only.')
				if (data) {
					this.showCookie = false
				}
			})
		}
	}
})
