Skip to content

Commit 7ddab56

Browse files
committed
removed console.logs
1 parent 2886377 commit 7ddab56

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/components/left-sidebar/ComponentTab/InputHTMLMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ const submitNote = (element, idNum) => {
237237
id: idNum
238238
}
239239
addActiveComponentElementNote(payload);
240-
console.log("Looking for htmlAttributes ", activeComponentObj.value.htmlAttributes);
240+
// console.log("Looking for htmlAttributes ", activeComponentObj.value.htmlAttributes);
241241
noteText.value = '';
242242
};
243243

src/components/right-sidebar/CodeSnippet.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ const createTemplate = (componentName) => {
108108
else {
109109
let routeStr = "";
110110
const arrOfChildComp = componentMap.value[componentName].children;
111-
// console.log(arrOfChildComp); // testing testing
112111
arrOfChildComp.forEach((childName) => {
113112
let childNameClass = componentMap.value[childName].htmlAttributes.class;
114113
let childNameClassFullStr =
@@ -453,7 +452,6 @@ watch(
453452
{ deep: true }
454453
);
455454
456-
console.log(activeComponentObj.value)
457455
// mounted()
458456
// https://vuejs.org/v2/api/#Vue-nextTick
459457
// kinda like a promise, used for the window resize

0 commit comments

Comments
 (0)