perf: 优化平台logo获取方式

This commit is contained in:
xiaoxian521
2023-10-21 19:54:22 +08:00
parent af224dceea
commit 14624119ed
4 changed files with 14 additions and 5 deletions

View File

@@ -8,7 +8,9 @@ defineOptions({
const icon = ref("");
watch(icon, () => console.log("icon", icon.value));
watch(icon, () => {
console.log("icon", icon.value);
});
</script>
<template>