This commit is contained in:
Zheng Jie
2022-10-25 11:11:05 +08:00
parent 159e24537f
commit 20af998dfe
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<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>