0
0
Fork 0

refs #5989 remove console logs

This commit is contained in:
Carlos Satorres 2023-08-09 12:06:24 +02:00
parent 566f7df2d0
commit a034d135c2
2 changed files with 1 additions and 7 deletions

View File

@ -18,7 +18,6 @@ defineExpose({
}); });
const pinnedModules = computed(() => navigation.getPinnedModules()); const pinnedModules = computed(() => navigation.getPinnedModules());
console.log(pinnedModules.value);
async function redirect() { async function redirect() {
let section = route.path.substring(1); let section = route.path.substring(1);

View File

@ -5,12 +5,7 @@ const customer = reactive({
name: '', name: '',
}); });
watch( watch(() => customer.name);
() => customer.name,
() => {
console.log('customer.name changed');
}
);
</script> </script>
<template> <template>