123456789101112131415161718192021222324252627 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const propsBox = defineMixin({
- props: {
-
- bgColors: {
- type: [Array],
- default: ['#EEFCFF', '#FCF8FF', '#FDF8F2']
- },
-
- height: {
- type: [String],
- default: "160px"
- },
-
- borderRadius: {
- type: [String],
- default: "6px"
- },
-
- gap: {
- type: [String],
- default: "15px"
- },
- }
- })
|