system-graph.vue 389 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="system-graph-page">
  3. <SystemGraph />
  4. </div>
  5. </template>
  6. <script>
  7. import { defineComponent } from 'vue';
  8. import SystemGraph from '../components/SystemGraph/index.vue';
  9. export default defineComponent({
  10. name: 'SystemGraphPage',
  11. components: {
  12. SystemGraph,
  13. },
  14. });
  15. </script>
  16. <style scoped>
  17. .system-graph-page {
  18. width: 100%;
  19. height: 100%;
  20. }
  21. </style>