uni-events-helper-wx
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
676 B

3 years ago
  1. // 此版本发布于2020-11-16
  2. const version = '2.0.3'
  3. export default {
  4. v: version,
  5. version,
  6. // 主题名称
  7. type: [
  8. 'primary',
  9. 'success',
  10. 'info',
  11. 'error',
  12. 'warning'
  13. ],
  14. // 颜色部分,本来可以通过scss的:export导出供js使用,但是奈何nvue不支持
  15. color: {
  16. 'u-primary': '#2979ff',
  17. 'u-warning': '#ff9900',
  18. 'u-success': '#19be6b',
  19. 'u-error': '#fa3534',
  20. 'u-info': '#909399',
  21. 'u-main-color': '#303133',
  22. 'u-content-color': '#606266',
  23. 'u-tips-color': '#909399',
  24. 'u-light-color': '#c0c4cc'
  25. }
  26. }