| 123456789101112131415161718192021222324252627 |
- <template>
- <div style="margin-top: 80px;">
- <wire-topology :physical="physical" :dataSource="dataSource" />
- </div>
- </template>
- <script>
- import WireTopology from './Wire'
- export default {
- name: 'ResTopology',
- components: {
- WireTopology,
- },
- props: {
- physical: Boolean,
- dataSource: Object,
- },
- data () {
- return {}
- },
- }
- </script>
- <style lang="scss">
- // @import "@Network/sections/Topology/index.scss";
- </style>
|