index.vue 446 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div style="margin-top: 80px;">
  3. <wire-topology :physical="physical" :dataSource="dataSource" />
  4. </div>
  5. </template>
  6. <script>
  7. import WireTopology from './Wire'
  8. export default {
  9. name: 'ResTopology',
  10. components: {
  11. WireTopology,
  12. },
  13. props: {
  14. physical: Boolean,
  15. dataSource: Object,
  16. },
  17. data () {
  18. return {}
  19. },
  20. }
  21. </script>
  22. <style lang="scss">
  23. // @import "@Network/sections/Topology/index.scss";
  24. </style>