This website works better with JavaScript
Acasă
Explorează
Ajutor
Autentificare
lovecoding
/
VIP32
Urmărește
10
Stea
0
Bifurcare
0
Fisiere
Probleme
0
Trageți solicitările
0
Wiki
Arbore:
6a43ccd8b2
Ramuri
Etichete
master
VIP32
/
JS高级
/
30.模块化
/
main2.js
main2.js
115 B
Istoric
Crud
1
2
3
4
5
6
7
//统一抛出
let color = 'red';
function fn2() {
console.log("这是第二个函数");
}
export {color,fn2};