| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div :style="{height:height,width:width}">
- <h3>******</h3>
- <div class="text-container">
- <el-table border>
- </el-table>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'tableChart',
- props: {
- height: {
- type: String,
- default: '610px'
- },
- width: {
- type: String,
- default: '100%'
- }
- },
- data() {
- return {
- }
- },
- mounted() {
- }
- }
- </script>
|