index.js 215 B

12345678910
  1. /**
  2. * Created by Administrator on 2019/5/12.
  3. */
  4. export function foo() {
  5. console.log('module1 foo()');
  6. }
  7. export let bar = function () {
  8. console.log('module1 bar()');
  9. };
  10. export const DATA_ARR = [1, 3, 5, 1];