decoration4.vue 512 B

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