Pear-Admin-Layui/component/pear/module/document.js

19 lines
303 B
JavaScript
Raw Normal View History

2020-07-15 21:22:46 +00:00
layui.define(['jquery', 'element'], function(exports) {
"use strict";
var MOD_NAME = 'document',
$ = layui.jquery,
element = layui.element;
var document = function(opt) {
this.option = opt;
};
$("body").on("click", "*[loading]", function() {
})
exports(MOD_NAME, new document());
})