|
- <template>
- <div class="xxx">
- scene
- </div>
- </template>
-
- <script>
-
- export default {
- data() {
- return {
- loading: false,
- summaryInfo: {
- available: 0,
- gain: 0,
- used: 0,
- },
- tabIndex: 0,
- tableData: [],
- pageInfo: {
- curpage: 1,
- pageSize: 10,
- pageSizes: [10],
- total: 0,
- },
- eventSource: null,
- };
- },
- components: {},
- methods: {
- getTableData: function () {
- },
- },
- mounted: function () {
- },
- beforeDestroy: function () {
- },
- };
- </script>
-
- <style scoped lang="less">
-
- </style>
|