decoration8.vue 481 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="content">
  3. <dv-decoration-8 style="width:90px;height:50px;" />
  4. </div>
  5. </template>
  6. <script>
  7. import DvDecoration8 from '@jiaminghi/data-view/lib/components/decoration8/src/main.vue'
  8. export default {
  9. name: 'Decoration8',
  10. components: {
  11. DvDecoration8
  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>