forked from verdnatura/salix-front
refs #5989 remove console logs
This commit is contained in:
parent
566f7df2d0
commit
a034d135c2
|
@ -18,7 +18,6 @@ defineExpose({
|
|||
});
|
||||
|
||||
const pinnedModules = computed(() => navigation.getPinnedModules());
|
||||
console.log(pinnedModules.value);
|
||||
|
||||
async function redirect() {
|
||||
let section = route.path.substring(1);
|
||||
|
|
|
@ -5,12 +5,7 @@ const customer = reactive({
|
|||
name: '',
|
||||
});
|
||||
|
||||
watch(
|
||||
() => customer.name,
|
||||
() => {
|
||||
console.log('customer.name changed');
|
||||
}
|
||||
);
|
||||
watch(() => customer.name);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
Loading…
Reference in New Issue