decoration5.vue 490 B

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