decoration2.vue 513 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="content">
  3. <dv-decoration-2
  4. :reverse="true"
  5. style="width:5px;height:75px;"
  6. />
  7. </div>
  8. </template>
  9. <script>
  10. import DvDecoration2 from '@jiaminghi/data-view/lib/components/decoration2/src/main.vue'
  11. export default {
  12. name: 'Decoration2',
  13. components: {
  14. DvDecoration2
  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>