Add HomePage.

This commit is contained in:
Yang Luo
2021-02-13 17:34:32 +08:00
parent 9677282017
commit 6824d558ca
5 changed files with 185 additions and 34 deletions

View File

@ -58,6 +58,10 @@ export function showMessage(type, text) {
}
}
export function isAdminUser(account) {
return account.owner === "built-in";
}
export function deepCopy(obj) {
return Object.assign({}, obj);
}