feat: visualize attached events on the trace widget (#190)

This commit is contained in:
Fine0830
2022-11-24 11:19:25 +08:00
committed by GitHub
parent da1db8def6
commit 7d802d490e
13 changed files with 263 additions and 24 deletions

View File

@@ -107,7 +107,7 @@ if (/Android|webOS|iPhone|iPod|iPad|BlackBerry/i.test(navigator.userAgent)) {
} else {
appStore.setIsMobile(false);
}
const isCollapse = ref(appStore.isMobile ? true : false);
const isCollapse = ref(true);
const controlMenu = () => {
isCollapse.value = !isCollapse.value;
};