File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -183,13 +183,13 @@ const endDrag = (event: Event) => {
183
183
else dragDropSortHtmlElements ();
184
184
};
185
185
186
- watch (activeComponent , () => {
187
- if (activeComponent .value !== " " ) {
188
- (store .componentMap [activeComponent .value ] as Component ).isActive = true ;
189
- } else {
190
- (store .componentMap [activeComponent .value ] as Component ).isActive = false ;
191
- }
192
- });
186
+ // watch(activeComponent, () => {
187
+ // if (activeComponent.value !== "") {
188
+ // (store.componentMap[activeComponent.value] as Component).isActive = true;
189
+ // } else {
190
+ // (store.componentMap[activeComponent.value] as Component).isActive = false;
191
+ // }
192
+ // });
193
193
</script >
194
194
195
195
<!-- <script>
Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ const parsingStringToState = (str: string) => {
140
140
};
141
141
142
142
// the bulk of the work for this component
143
+ // @ts-ignore
143
144
const openVueFile = (data ) => {
144
145
if (data === undefined ) return ;
145
146
Original file line number Diff line number Diff line change @@ -59,11 +59,11 @@ Description:
59
59
</section >
60
60
</template >
61
61
62
- <script >
62
+ <!-- < script>
63
63
export default {
64
64
name: "HTMLQueue",
65
65
};
66
- </script >
66
+ </script> -->
67
67
68
68
<script setup lang="ts">
69
69
import { ref , computed , watch } from " vue" ;
@@ -252,7 +252,7 @@ const addBinding = (input: string, idNum: number) => {
252
252
if (input === " " ) {
253
253
return ;
254
254
}
255
- const payload : {binding: string , id: number } = {
255
+ const payload: { binding: string ; id: number } = {
256
256
binding: input ,
257
257
id: idNum ,
258
258
};
Original file line number Diff line number Diff line change 40
40
" dist" ,
41
41
" .quasar" ,
42
42
" node_modules" ,
43
+ " src" ,
43
44
]
44
45
}
You can’t perform that action at this time.
0 commit comments