Browse Source

filenames

Martin Kunz 1 month ago
parent
commit
a99f30417d
3 changed files with 6 additions and 6 deletions
  1. 6 6
      src/App.vue
  2. 0 0
      src/components/TheInstance.vue
  3. 0 0
      src/components/TheMapping.vue

+ 6 - 6
src/App.vue

@@ -1,8 +1,8 @@
 <script setup lang="ts">
-import TheModeler from './components/TheAddressspace.vue'
-import TheDetail from './components/TheNodeEditor.vue'
+import TheAddressspace from './components/TheAddressspace.vue'
+import TheInstance from './components/TheInstance.vue'
 import TheParent from './components/TheParent.vue'
-import TheEditor from './components/TheMappingEditor.vue'
+import TheMapping from './components/TheMapping.vue'
 import TheDynamics from './components/TheDynamics.vue'
 import { ServerConfig } from '@/ServerConfig'
 import TheModels from './components/TheModels.vue'
@@ -55,12 +55,12 @@ async function load(): Promise<AddressSpace> {
     <div class="row align-items-start">
       <div class="col col-6">
         <TheModels />
-        <TheModeler />    
+        <TheAddressspace />    
       </div>
       <div class="col col-6">
         <TheParent ref="childParentRef"/>
-        <TheDetail ref="childDetailRef"/>
-        <TheEditor ref="childEditorRef"/>
+        <TheInstance ref="childDetailRef"/>
+        <TheMapping ref="childEditorRef"/>
         <TheDynamics ref="childDynamicsRef"/>
         <button class="btn btn-light"  v-if="selectedNode!=null" @click.prevent="okPressed()">OK</button>
       </div>

src/components/TheNodeEditor.vue → src/components/TheInstance.vue


src/components/TheMappingEditor.vue → src/components/TheMapping.vue