props.js 438 B

12345678910111213141516171819202122232425262728
  1. export default {
  2. props: {
  3. propCfg: {
  4. type: Array,
  5. default: () => []
  6. },
  7. businessKey: {
  8. type: String,
  9. required: true
  10. },
  11. dictMap: {
  12. type: Object,
  13. default: () => ({})
  14. },
  15. dictMapMap: {
  16. type: Object,
  17. default: () => ({})
  18. },
  19. styCfg: {
  20. type: Object,
  21. default: () => ({})
  22. },
  23. dataId: {
  24. type: Object,
  25. default: () => ({})
  26. }
  27. }
  28. }