System Info
None
Details
Dynamic import script and not use lazy. This would lead to an error because lynx.loadLazyBundle is not defined.
Reproduce link
No response
Reproduce Steps
export function App() {
const handleTap = ()=>{
import("./test").then((res)=>{
console.log('dynamic import', res)
})
}
return (
<view bindtap={handleTap}>...</view>
)
}