js Import Export
公司遇到在 js 中寫入 Import 以及 Export
Common.js
export{
A,
B,
C,
}
First.js
import { A as AList, B as BList, C as CList} from '../Common.js';
function TheA{
AList.function();
AList.SomeVar;
}
function TheB{
//todo
}
export {
TheA,
TheB,
}
這時候 First.js 中也含有了 A B C Function or 變數了
參考
https://blog.csdn.net/weixin_43654374/article/details/108241059
留言
張貼留言