This commit is contained in:
Zheng Jie
2022-08-01 17:41:18 +08:00
parent ff0aa185f1
commit 2a38d50e88
13 changed files with 57 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
import wwads from '@/components/Ad'
export default (Vue) => {
Vue.component('wwads', wwads)
}

View File

@@ -0,0 +1,30 @@
<template>
<div
v-show="show"
class="wwads-cn wwads-vertical"
data-id="148"
style="z-index:10000;position:fixed;bottom:33px;right:5px;max-width:200px;padding:10px;border-radius:5px;"
/>
</template>
<script>
export default {
data() {
return {
show: false
}
},
created() {
const _this = this
setTimeout(function() {
_this.show = true
}, 650)
}
}
</script>
<style lang="scss" scoped>
.wwads-vertical .wwads-poweredby {
display: none !important;
}
</style>