1
0

Layout.vue 350 B

123456789101112131415161718192021
  1. <template>
  2. <ParentLayout>
  3. <template #sidebar-top>
  4. <CarbonAds />
  5. </template>
  6. </ParentLayout>
  7. </template>
  8. <script>
  9. import ParentLayout from '@parent-theme/layouts/Layout.vue'
  10. import CarbonAds from '@theme/components/CarbonAds.vue'
  11. export default {
  12. name: 'Layout',
  13. components: {
  14. ParentLayout,
  15. CarbonAds,
  16. }
  17. }
  18. </script>