31 lines
529 B
Vue
31 lines
529 B
Vue
<template>
|
|
<div
|
|
v-if="show"
|
|
id="ww-container"
|
|
class="wwads-cn wwads-vertical"
|
|
data-id="148"
|
|
style="z-index:10000;position:fixed;bottom:33px;right:1px;max-width:200px;padding: 12px 10px;border-radius:5px;"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
show: true
|
|
}
|
|
},
|
|
created() {
|
|
if (window._AdBlockInit === undefined) {
|
|
this.show = false
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.wwads-vertical .wwads-poweredby {
|
|
display: none !important;
|
|
}
|
|
</style>
|