Files
eladmin-web/src/components/Ad/index.vue
Zheng Jie 4c50a23279 test
2022-08-24 13:38:22 +08:00

25 lines
357 B
Vue

<template>
<div
v-if="show"
id="ww-container"
class="wwads-cn wwads-vertical"
data-id="148"
style="z-index:10000;padding: 12px 10px;"
/>
</template>
<script>
export default {
data() {
return {
show: true
}
},
created() {
if (window._AdBlockInit === undefined) {
this.show = false
}
}
}
</script>