动态import

45 阅读1分钟
const btn=document.getElementById('btn');

btn.onclick=function(){
动态导入
import('./hello.js').then(module=>{
module.hello();
})
}

------

静态import

import * as m1 from './hello.js';