Demo updates

This commit is contained in:
tugcekucukoglu
2024-03-11 17:20:10 +03:00
parent 9f1d6f08e3
commit 184b795add
6 changed files with 94 additions and 54 deletions

View File

@@ -9,7 +9,7 @@ const password = ref('');
const checked = ref(false);
const logoUrl = computed(() => {
return `layout/images/${layoutConfig.darkTheme.value ? 'logo-white' : 'logo-dark'}.svg`;
return `/layout/images/${layoutConfig.darkTheme.value ? 'logo-white' : 'logo-dark'}.svg`;
});
</script>