decoration4.vue 480 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="content">
  3. <dv-decoration-4 style="width:7px;height:70px;" />
  4. </div>
  5. </template>
  6. <script>
  7. import DvDecoration4 from '@jiaminghi/data-view/lib/components/decoration4/src/main.vue'
  8. export default {
  9. name: 'Decoration4',
  10. components: {
  11. DvDecoration4
  12. },
  13. data () {
  14. return {}
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .content {
  20. width: 221px;
  21. height: 100px;
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. </style>