lifeCyclesMap.js 269 B

1234567891011121314151617
  1. "use strict";
  2. /**
  3. * type
  4. * 0 - missing - 不支持该属性
  5. * 1 - diff - 命名及格式不同
  6. * 3 - diffType - 类型不同
  7. * 4 - defaultValue - 默认值不同
  8. */
  9. module.exports = {
  10. Component: {
  11. created: {
  12. type: 1,
  13. name: 'onInit'
  14. }
  15. }
  16. };