File tree Expand file tree Collapse file tree 9 files changed +841
-103
lines changed Expand file tree Collapse file tree 9 files changed +841
-103
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Description:
13
13
>
14
14
<!-- This is the actual component box -->
15
15
<!-- https://www.npmjs.com/package/vue-draggable-resizable -->
16
- <VueDraggableResizable
16
+ <!-- < VueDraggableResizable
17
17
class-name="component-box"
18
18
v-for="componentData in activeRouteArray"
19
19
ref="boxes"
@@ -69,7 +69,7 @@ Description:
69
69
</q-item>
70
70
</q-list>
71
71
</q-menu>
72
- </VueDraggableResizable >
72
+ </VueDraggableResizable> -->
73
73
74
74
75
75
<div >
Original file line number Diff line number Diff line change @@ -93,23 +93,23 @@ export default {
93
93
// otherwise toggle dashboard to 'Project Tree' tab if no component is selected or the
94
94
// user is in the process of creating a component
95
95
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
+ // },
101
101
102
102
// // toggles dashboard to "Project Tree" tab if:
103
103
// // no component is selected and either:
104
104
// // 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
+ // }
113
113
}
114
114
};
115
115
You can’t perform that action at this time.
0 commit comments