123456789101112131415161718192021222324 |
- <template>
- <div class="system-graph-page">
- <SystemGraph />
- </div>
- </template>
- <script>
- import { defineComponent } from 'vue';
- import SystemGraph from '../components/SystemGraph/index.vue';
- export default defineComponent({
- name: 'SystemGraphPage',
- components: {
- SystemGraph,
- },
- });
- </script>
- <style scoped>
- .system-graph-page {
- width: 100%;
- height: 100%;
- }
- </style>
|