props.js 385 B

123456789101112131415161718192021
  1. "use strict";
  2. const props = {
  3. memberName: {
  4. type: String,
  5. default: ""
  6. },
  7. content: {
  8. type: Array,
  9. default: () => []
  10. },
  11. date: {
  12. type: String,
  13. default: ""
  14. },
  15. index: {
  16. type: [Number, String],
  17. default: 0
  18. }
  19. };
  20. exports.props = props;
  21. //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pagesCrm/business/schemeDetail/template/props.js.map