Skip to content

Commit c4dc1dc

Browse files
Shanon LeeShanon Lee
authored andcommitted
Added EditDeleteComponents & children
1 parent bd47d6c commit c4dc1dc

File tree

9 files changed

+841
-103
lines changed

9 files changed

+841
-103
lines changed

package-lock.json

Lines changed: 36 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/ComponentDisplay.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Description:
1313
>
1414
<!-- This is the actual component box -->
1515
<!-- https://www.npmjs.com/package/vue-draggable-resizable -->
16-
<VueDraggableResizable
16+
<!-- <VueDraggableResizable
1717
class-name="component-box"
1818
v-for="componentData in activeRouteArray"
1919
ref="boxes"
@@ -69,7 +69,7 @@ Description:
6969
</q-item>
7070
</q-list>
7171
</q-menu>
72-
</VueDraggableResizable>
72+
</VueDraggableResizable> -->
7373

7474

7575
<div>

src/components/dashboard_items/Dashboard.vue

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -93,23 +93,23 @@ export default {
9393
// otherwise toggle dashboard to 'Project Tree' tab if no component is selected or the
9494
// user is in the process of creating a component
9595
96-
componentNameInputValue: function() {
97-
if (this.componentNameInputValue !== "" && this.activeComponent === "") {
98-
this.tab = "tree";
99-
}
100-
},
96+
// componentNameInputValue: function() {
97+
// if (this.componentNameInputValue !== "" && this.activeComponent === "") {
98+
// this.tab = "tree";
99+
// }
100+
// },
101101
102102
// // toggles dashboard to "Project Tree" tab if:
103103
// // no component is selected and either:
104104
// // elements are being added to component or name is being typed
105-
selectedElementList: function() {
106-
if (
107-
this.activeComponent === "" &&
108-
this.selectedElementList.length !== 0
109-
) {
110-
this.tab = "tree";
111-
}
112-
}
105+
// selectedElementList: function() {
106+
// if (
107+
// this.activeComponent === "" &&
108+
// this.selectedElementList.length !== 0
109+
// ) {
110+
// this.tab = "tree";
111+
// }
112+
// }
113113
}
114114
};
115115

0 commit comments

Comments
 (0)