diff --git a/src/components/footer-nav/index.vue b/src/components/footer-nav/index.vue index 3969b347..1530f4a9 100644 --- a/src/components/footer-nav/index.vue +++ b/src/components/footer-nav/index.vue @@ -48,7 +48,6 @@ const nav_style = ref(0); watch( () => props.footerData, (newVal, oldValue) => { - console.log('footer-nav-index:', newVal); const new_content = newVal?.content || {}; const new_style = newVal?.style || {}; nav_content.value = new_content?.nav_content || []; diff --git a/src/views/layout/components/main/index.vue b/src/views/layout/components/main/index.vue index 5e31fbe3..0b0cff11 100644 --- a/src/views/layout/components/main/index.vue +++ b/src/views/layout/components/main/index.vue @@ -218,7 +218,6 @@ watch( watch( () => props.footer, (newValue) => { - console.log('main:', newValue); footer_nav.value = newValue; }, { deep: true }