TableChart.vue 438 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div :style="{height:height,width:width}">
  3. <h3>******</h3>
  4. <div class="text-container">
  5. <el-table border>
  6. </el-table>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'tableChart',
  13. props: {
  14. height: {
  15. type: String,
  16. default: '610px'
  17. },
  18. width: {
  19. type: String,
  20. default: '100%'
  21. }
  22. },
  23. data() {
  24. return {
  25. }
  26. },
  27. mounted() {
  28. }
  29. }
  30. </script>