layui-js/examples/extends/mod2.js

11 lines
151 B
JavaScript
Raw Normal View History

2021-04-05 15:41:30 +00:00
/**
扩展模块只依赖内置模块
**/
2019-05-31 06:36:29 +00:00
2021-04-05 15:41:30 +00:00
layui.define(function(exports){
console.log('mod2.js')
2021-04-06 08:01:23 +00:00
2019-05-31 06:36:29 +00:00
exports('mod2', {
name: 'mod2'
})
});