This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
lovecoding
/
VIP32
Vigiar
10
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Árvore:
f15c4da83b
Ramos
Etiquetas
master
VIP32
/
JS高级
/
30.模块化
/
main2.js
main2.js
115 B
Histórico
Em bruto
1
2
3
4
5
6
7
//统一抛出
let color = 'red';
function fn2() {
console.log("这是第二个函数");
}
export {color,fn2};