File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ Description:
17
17
18
18
</q-btn >
19
19
</template >
20
-
21
20
<script >
22
21
import { useExportComponent } from " ../composables/useExportComponent.js" ;
23
22
import { mapState } from " vuex" ;
@@ -199,9 +198,6 @@ export default {
199
198
<el-button>replies</el-button` ,
200
199
`
201
200
</el-badge>` ],
202
-
203
-
204
-
205
201
};
206
202
// function to loop through nested elements
207
203
function writeNested (childrenArray , indent ) {
@@ -299,7 +295,6 @@ export default {
299
295
} else {
300
296
str += ` \t\t\t <router-link to="/${ route} " class = "componentLinks">${ route} </router-link>\n ` ;
301
297
}}
302
- str += ` \t\t </div>\n\t\t <router-view class = "router-view"></router-view>\n ` ;
303
298
}
304
299
else {
305
300
// Adds component name as class for all routes
@@ -755,7 +750,7 @@ export default {
755
750
this .createTSDeclaration (data);
756
751
this .createPackage (data);
757
752
this .createStore (data);
758
- this .createFirebaseConfigFile (data)
753
+ this .createFirebaseConfigFile (data);
759
754
// exports images to the /assets folder
760
755
// eslint-disable-next-line no-unused-vars
761
756
for (let [routeImage, imageLocation] of Object .entries (this .imagePath )) {
Original file line number Diff line number Diff line change @@ -245,15 +245,15 @@ export default {
245
245
this .$store .commit (" EXPORT_AS_TYPESCRIPT" , checkboxValue);
246
246
},
247
247
syncOauthFlag (e ) {
248
-
248
+ console . log ( this . $store . state . exportOauth );
249
249
let checkboxValue;
250
250
if (e .target .value === " off" ) {
251
251
checkboxValue = " on" ;
252
252
} else {
253
253
checkboxValue = " off" ;
254
254
}
255
255
this .$store .commit (" EXPORT_OAUTH" , checkboxValue);
256
- console . log ( this . exportOauth );
256
+
257
257
},
258
258
clickedUndo () {
259
259
this .$emit (' undo' );
You can’t perform that action at this time.
0 commit comments