29 lines
750 B
Vue
29 lines
750 B
Vue
<template>
|
|
<div v-if="$themeConfig.showAds && $isNotSharing" class="adsense-paragraph" :style="$isDev ? 'background-color: grey;' : ''">
|
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
<ins class="adsbygoogle"
|
|
style="display:block; text-align:center;"
|
|
data-ad-layout="in-article"
|
|
data-ad-format="fluid"
|
|
data-ad-client="ca-pub-3313149841665250"
|
|
data-ad-slot="1006020799"></ins>
|
|
<script>
|
|
(adsbygoogle = window.adsbygoogle || []).push({});
|
|
</script>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.adsense-paragraph {
|
|
/* background-color: grey; */
|
|
padding-right: 2px;
|
|
border: 1px solid #d7dae2;
|
|
}
|
|
</style>
|