File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Description:
20
20
>
21
21
<q-tab name =" detail" id =" label-text" ><i class =" fas fa-code" ></i ></q-tab >
22
22
<q-tab name =" tree" id =" label-text" ><i class =" fas fa-code-branch fa-flip-vertical" /></q-tab >
23
- <q-tab name =" store" id =" label-text" ><i class =" fas fa-store-alt" ></i ></q-tab >
23
+ <!-- < q-tab name="store" id="label-text" ><i class="fas fa-store-alt"></i></q-tab> -- >
24
24
</q-tabs >
25
25
<q-tab-panels v-model =" tab" animated class =" html-bg text-white " >
26
26
<q-tab-panel name =" detail" >
@@ -29,9 +29,9 @@ Description:
29
29
<q-tab-panel name =" tree" >
30
30
<Tree />
31
31
</q-tab-panel >
32
- <q-tab-panel name =" store" >
32
+ <!-- < q-tab-panel name="store">
33
33
<VuexStore />
34
- </q-tab-panel >
34
+ </q-tab-panel> -->
35
35
</q-tab-panels >
36
36
</q-card >
37
37
</div >
Original file line number Diff line number Diff line change 2
2
Functionality includes: if active component is selected, will switch view to editing mode. If not, it will be in create mode -->
3
3
<template >
4
4
<q-card id =" store-cards" >
5
+ <UploadImage v-if =" activeComponent === ''" />
5
6
<CreateComponent v-if =" activeComponent === ''" />
6
7
<EditDeleteComponents v-if =" activeComponent !== ''" />
7
8
</q-card >
@@ -11,6 +12,7 @@ Functionality includes: if active component is selected, will switch view to edi
11
12
import CreateComponent from ' ./CreateComponent.vue'
12
13
import EditDeleteComponents from ' ./EditDeleteComponents.vue'
13
14
import { mapState } from ' vuex'
15
+ import UploadImage from ' ../UploadImage.vue'
14
16
15
17
export default {
16
18
data () {
@@ -27,6 +29,7 @@ export default {
27
29
components: {
28
30
CreateComponent,
29
31
EditDeleteComponents,
32
+ UploadImage,
30
33
}
31
34
}
32
35
</script >
You can’t perform that action at this time.
0 commit comments