props.js 1014 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. export default {
  2. props: {
  3. // #ifdef APP-PLUS-NVUE
  4. bgColor: String,
  5. // #endif
  6. content: String,
  7. copyLink: {
  8. type: Boolean,
  9. default: uni.$u.props.parse.copyLink
  10. },
  11. domain: String,
  12. errorImg: {
  13. type: String,
  14. default: uni.$u.props.parse.errorImg
  15. },
  16. lazyLoad: {
  17. type: Boolean,
  18. default: uni.$u.props.parse.lazyLoad
  19. },
  20. loadingImg: {
  21. type: String,
  22. default: uni.$u.props.parse.loadingImg
  23. },
  24. pauseVideo: {
  25. type: Boolean,
  26. default: uni.$u.props.parse.pauseVideo
  27. },
  28. previewImg: {
  29. type: Boolean,
  30. default: uni.$u.props.parse.previewImg
  31. },
  32. scrollTable: Boolean,
  33. selectable: Boolean,
  34. setTitle: {
  35. type: Boolean,
  36. default: uni.$u.props.parse.setTitle
  37. },
  38. showImgMenu: {
  39. type: Boolean,
  40. default: uni.$u.props.parse.showImgMenu
  41. },
  42. tagStyle: Object,
  43. useAnchor: null
  44. }
  45. }