layui-js/examples/extends/mod2.js

13 lines
173 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')
layer.alert(1)
2019-05-31 06:36:29 +00:00
exports('mod2', {
name: 'mod2'
})
});