26 lines
570 B
Vue
26 lines
570 B
Vue
<template>
|
|
<div class="adsense-banner">
|
|
<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>
|