動態載入模組
whck6
export let go = () => {
return "AAA";
};
(async () => {
let Module = await import("./Module.js");
console.log(Module.go()); // AAA
});
whck6
export let go = () => {
return "AAA";
};
(async () => {
let Module = await import("./Module.js");
console.log(Module.go()); // AAA
});