Files
im/plugin/admin/public/js/dev.js
T
2025-11-21 01:42:54 +08:00

10 lines
233 B
JavaScript

define(['lightyear','form'], function (lightyear,Form) {
//Do setup work here
var Dev = {
index: function () {
var form = $('form');
Form.api.bindevent(form);
}
}
return Dev
});