props.js 885 B

12345678910111213141516171819202122232425262728293031323334
  1. export default {
  2. props: {
  3. // 是否展示工具条
  4. show: {
  5. type: Boolean,
  6. default: uni.$u.props.toolbar.show
  7. },
  8. // 取消按钮的文字
  9. cancelText: {
  10. type: String,
  11. default: uni.$u.props.toolbar.cancelText
  12. },
  13. // 确认按钮的文字
  14. confirmText: {
  15. type: String,
  16. default: uni.$u.props.toolbar.confirmText
  17. },
  18. // 取消按钮的颜色
  19. cancelColor: {
  20. type: String,
  21. default: uni.$u.props.toolbar.cancelColor
  22. },
  23. // 确认按钮的颜色
  24. confirmColor: {
  25. type: String,
  26. default: uni.$u.props.toolbar.confirmColor
  27. },
  28. // 标题文字
  29. title: {
  30. type: String,
  31. default: uni.$u.props.toolbar.title
  32. }
  33. }
  34. }