Add apps to homepage.

This commit is contained in:
Gucheng Wang
2022-04-25 13:27:26 +08:00
parent fb7e2729c6
commit 0e41568f62
4 changed files with 41 additions and 13 deletions

View File

@ -277,6 +277,11 @@ export function goToLink(link) {
}
export function goToLinkSoft(ths, link) {
if (link.startsWith("http")) {
openLink(link);
return;
}
ths.props.history.push(link);
}