摘要:
const presetSizes = { xs: "0.5rem", sm: "1rem", }; type Size = keyof typeof presetSizes; //type LooseSize = Size | string; // the result will be strin 阅读全文
posted @ 2023-08-04 19:44
Zhentiw
阅读(9)
评论(0)
推荐(0)
摘要:
<Parent> <child> <button /> </child> </Parent> function onClick(event) { console.log('target: ', event.target) // button console.log('currentTarget', 阅读全文
posted @ 2023-08-04 16:11
Zhentiw
阅读(25)
评论(0)
推荐(0)
摘要:
const installedApps = await navigator.getInstalledRelatedApps() const packageId = "com.app.pwa" const app = installedApps.find(app => app.id packageId 阅读全文
posted @ 2023-08-04 15:38
Zhentiw
阅读(28)
评论(0)
推荐(0)