props.js 602 B

123456789101112131415161718192021222324252627
  1. import { defineMixin } from '../../libs/vue'
  2. import defProps from '../../libs/config/props.js'
  3. export const propsBox = defineMixin({
  4. props: {
  5. // 背景色
  6. bgColors: {
  7. type: [Array],
  8. default: ['#EEFCFF', '#FCF8FF', '#FDF8F2']
  9. },
  10. // 高度
  11. height: {
  12. type: [String],
  13. default: "160px"
  14. },
  15. // 圆角
  16. borderRadius: {
  17. type: [String],
  18. default: "6px"
  19. },
  20. // 间隔
  21. gap: {
  22. type: [String],
  23. default: "15px"
  24. },
  25. }
  26. })