index.vue 476 B

12345678910111213141516171819202122232425
  1. <template>
  2. <ContentBox
  3. class="go-content-draw"
  4. :flex="true"
  5. :showTop="false"
  6. :showBottom="true"
  7. :depth="1"
  8. >
  9. <template #bottom>
  10. </template>
  11. </ContentBox>
  12. </template>
  13. <script setup lang="ts">
  14. import { reactive } from 'vue'
  15. import { ContentBox } from '../ContentBox/index'
  16. </script>
  17. <style lang="scss" scoped>
  18. @include go(content-draw) {
  19. overflow: hidden;
  20. @include background-image('background-point');
  21. @extend .go-point-bg;
  22. }
  23. </style>