Skip to content

Commit 51963fd

Browse files
committed
Saving files before refreshing line endings. Also added CreateComponent
1 parent 4d12e26 commit 51963fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/home_sidebar_items/ComponentTab/ComponentTab.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
Functionality includes: if active component is selected, will switch view to editing mode. If not, it will be in create mode -->
33
<template>
44
<q-card id="store-cards">
5-
<!-- <UploadImage v-if="activeComponent === ''"/>
5+
<!-- <UploadImage v-if="activeComponent === ''"/> -->
66
<CreateComponent v-if="activeComponent === ''"/>
7-
<EditDeleteComponents v-if="activeComponent !== ''"/> -->
7+
<!-- <EditDeleteComponents v-if="activeComponent !== ''"/> -->
88
</q-card>
99
</template>
1010

1111
<script>
12-
// import CreateComponent from './CreateComponent.vue'
12+
import CreateComponent from './CreateComponent.vue'
1313
// import EditDeleteComponents from './EditDeleteComponents.vue'
1414
import { mapState } from 'vuex'
1515
// import UploadImage from '../UploadImage.vue'
@@ -25,7 +25,7 @@ export default {
2525
])
2626
},
2727
components: {
28-
// CreateComponent,
28+
CreateComponent,
2929
// EditDeleteComponents,
3030
// UploadImage,
3131
}

0 commit comments

Comments
 (0)