您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

12 行
296 B

  1. //use the !rel flag to load file relative to this module or to baseUrl
  2. define(['image!./software_engineer.png!rel'], function(engineer){
  3. return {
  4. init : function(wrapper){
  5. engineer.style.display = 'block';
  6. wrapper.appendChild(engineer);
  7. }
  8. };
  9. });