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