UNPKG
@epmkit/cra-template-epm-plugin
Version:
latest (1.2.0)
1.2.0
1.1.4
1.1.3
The base template for EPM plugins.
@epmkit/cra-template-epm-plugin
/
template
/
src
/
bootstrap.js
12 lines
(11 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
waitReady
= (
) => {
setTimeout
(
() =>
{
//定时检查一次
if
(
window
.
TinperNext
) {
import
(
"./index.js"
);
//运行入口
}
else
{
waitReady
();
//不存在则继续等待检查
} },
10
); };
waitReady
();