Layout.vue 562 B

123456789101112131415161718192021222324252627
  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:10px auto 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>