CarouselTabl.vue 631 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div style="width: 100%;height: 100%;overflow: hidden;">
  3. <div class="title" style="vertical-align: top; height: 10%;font-size: 16px;">{{ title }}</div>
  4. <div style="width:100%;height: 90%;display: inline-block;background-color: #06163f;">
  5. <dv-scroll-board :config="info" style="width:100%;height:100%" />
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {};
  13. },
  14. props: {
  15. info: {
  16. type: Object,
  17. default: {},
  18. },
  19. title: {
  20. type: String,
  21. default: "",
  22. },
  23. },
  24. };
  25. </script>
  26. <style lang="scss" module>
  27. .pieView {
  28. width: 100%;
  29. }
  30. </style>