lifeCyclesMap.js 258 B

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