Files
eladmin-web/src/components/Ad/index.vue
Zheng Jie de479a837b update
2022-08-05 17:50:40 +08:00

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>