You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
layui/examples/extends/mod1.js

12 lines
206 B

4 years ago
/**
扩展模块且依赖 mod2
**/
layui.define('mod2', function(exports){
6 years ago
var $ = layui.jquery;
console.log(layui.mod2, layui.layer, layui.form)
exports('mod1', {
name: 'mod1'
})
});