12345678910111213141516 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- name: {
- type: [String, Number, null],
- default: () => defProps.gridItem.name
- },
-
- bgColor: {
- type: String,
- default: () => defProps.gridItem.bgColor
- }
- }
- })
|