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());
|
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);
|
||||||
|
|
|
@ -5,12 +5,7 @@ const customer = reactive({
|
||||||
name: '',
|
name: '',
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(
|
watch(() => customer.name);
|
||||||
() => customer.name,
|
|
||||||
() => {
|
|
||||||
console.log('customer.name changed');
|
|
||||||
}
|
|
||||||
);
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
Loading…
Reference in New Issue