@@ -155,7 +155,7 @@ const routes: RouteRecordRaw[] = [
{ path: '/:pathMatch(.*)*', component: import("@/view/layout/nav.vue") },
];
-console.log('routes', routes)
+// console.log('routes', routes)
export const findRoute = (
routeName: string,
fullPath = false,
@@ -22,7 +22,7 @@ const getIconUrl = computed(() => (name: string, isActive: boolean) => {
const url = isActive
? new URL(`../../../assets/icon/${name}_active.svg`, import.meta.url)
: new URL(`../../../assets/icon/${name}.svg`, import.meta.url);
- console.log("当前URL", url);
+ // console.log("当前URL", url);
return String(url);
});
</script>