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

14 lines
245 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;
};
exports(MOD_NAME, new document());
})