Files
im/plugin/admin/public/js/dev.js
T
commie c153975eed 7
2026-01-08 05:42:44 +08:00

10 lines
233 B
JavaScript
Executable File

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