alert.js 573 B

1234567891011121314151617181920212223242526
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 3.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : jry
  7. * @lastTime : 2025-08-17 17:23:53
  8. * @FilePath : /uview-plus/libs/config/props/alert.js
  9. */
  10. export default {
  11. // alert警告组件
  12. alert: {
  13. title: '',
  14. type: 'warning',
  15. description: '',
  16. closable: false,
  17. showIcon: false,
  18. effect: 'light',
  19. center: false,
  20. fontSize: 14,
  21. transitionMode: 'fade',
  22. duration: 0,
  23. icon: '',
  24. value: true
  25. }
  26. }