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
|
<template>
<div :class="'notification ' + (hideIntro? 'is-hidden' : '')">
<button class="delete" @click="hideIntro = true"></button>
<div class="content">
<h3>Hi There!</h3>
<img style="float: right" class="image is-64x64" src="/dist/assets/gwenbarf.png"></img>
<p>
Broken Talents Fun will help you find the best Talents for the Vainglory mobile MOBA game.
<br />
Talents are special boosts for Vainglory's Brawl modes that upgrade and change hero abilities in a variety of different ways.
<br />
The pick and win rates on this site have been gathered from real Vainglory matches.
The data can be imprecise and can be contrary to your personal experience.
</p>
<p>
This site shares visitor data with Google Analytics and Google AdSense which store cookies. If you do not want that, you can <a @click="optOutAnalytics()">opt out of Google Analytics</a><span v-if="gaOptedOut"> (Google Analytics is disabled for you)</span> and <a href="http://www.youronlinechoices.com/">opt out of targeted advertisements</a>.
</p>
</div>
</div>
</template>
<script>
import Vue from 'vue';
import RouterParamMixin from './RouterParamMixin';
export default Vue.component('intro-box', {
mixins: [ RouterParamMixin ],
data: function() {
return {
hideIntro: !!localStorage.getItem('hideIntro'),
gaOptedOut: !!localStorage.getItem('gaOptOut'),
};
},
methods: {
optOutAnalytics: function() {
this.$ga.disable();
this.gaOptedOut = true;
},
},
created: function() {
if (this.gaOptedOut) {
this.$ga.disable();
}
},
watch: {
hideIntro: function(value) {
localStorage.setItem('hideIntro', value);
},
gaOptedOut: function(value) {
localStorage.setItem('gaOptOut', value);
},
selectedMode: function(value) {
this.hideIntro = !!localStorage.getItem('hideIntro');
},
},
});
</script>
|