Files
im/plugin/admin/public/js/dev.js
T

10 lines
233 B
JavaScript
Raw Normal View History

2025-11-07 09:56:20 +08:00
define(['lightyear','form'], function (lightyear,Form) {
//Do setup work here
var Dev = {
index: function () {
var form = $('form');
Form.api.bindevent(form);
}
}
return Dev
});