Files
kuboard-press/.vuepress/components/AdSenseBanner.vue
huanqing.shao 55290284ca ads-switch
2019-10-21 21:59:03 +08:00

26 lines
647 B
Vue

<template>
<div v-if="$themeConfig.showAds" class="adsense-banner" :style="$isDev ? 'background-color: grey;' : ''">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- 正文-横幅 -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-3313149841665250"
data-ad-slot="6664228501"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</template>
<script>
export default {
}
</script>
<style scoped>
.adsense-banner {
/* background-color: grey; */
}
</style>