🎨 修改代码规范.

This commit is contained in:
lijiahang
2024-12-26 13:51:41 +08:00
parent 9017ada3aa
commit 00ea709f9e
19 changed files with 115 additions and 89 deletions

View File

@@ -35,9 +35,9 @@
// 跳转到指定页
onBeforeMount(() => {
const key = route.query.key;
const key = route.query.key as string;
if (key) {
activeKey.value = key as string;
activeKey.value = key;
}
});