Layout.vue 716 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <Layout>
  3. <div slot="sidebar-top">
  4. <ins class="adsbygoogle"
  5. style="display:block;box-sizing:border-box;width:100%;height:120px;margin:0 auto;padding: 10px 10px 0;"
  6. data-ad-client="ca-pub-4613560834313397"
  7. data-ad-slot="2465217753">
  8. </ins>
  9. </div>
  10. </Layout>
  11. </template>
  12. <script>
  13. import Layout from '@default-theme/Layout.vue'
  14. export default {
  15. components: {
  16. Layout,
  17. },
  18. mounted() {
  19. setTimeout(() => {
  20. const adsbygoogle = window.adsbygoogle || []
  21. adsbygoogle.push({})
  22. }, 1000)
  23. }
  24. }
  25. </script>
  26. <style lang="stylus">
  27. .google-ads
  28. width 100%
  29. height 120px
  30. padding 1.5rem 1.5rem 0
  31. margin-bottom -.5rem
  32. font-size .75rem
  33. </style>