refs #5989 btn redirection #69

Merged
alexm merged 19 commits from 5989-redirectSalix into dev 2023-08-09 10:39:54 +00:00
2 changed files with 1 additions and 7 deletions
Showing only changes of commit a034d135c2 - Show all commits

View File

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

View File

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