The example below shows how to use the easyloader plugin to load the specified module:
easyloader.load('messager', function(){ // load the specified module
$.messager.alert('Title', 'load ok');
});
The code can also be written as:
using('messager', function(){ // load the specified module
$.messager.alert('Title', 'load ok');
});