main2.js 115 B

1234567
  1. //统一抛出
  2. let color = 'red';
  3. function fn2() {
  4. console.log("这是第二个函数");
  5. }
  6. export {color,fn2};