模块化
时间:2020-08-14 23:23:39
收藏:0
阅读:71
commonjs模块化:
//导出 module.exports={ flag:true, test(a,b){ return a+b } }
//导入 var s=require("./")
原文:https://www.cnblogs.com/fhzm/p/13504616.html
评论(0)