12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- icon: {
- type: String,
- default: () => defProps.empty.icon
- },
-
- text: {
- type: String,
- default: () => defProps.empty.text
- },
-
- textColor: {
- type: String,
- default: () => defProps.empty.textColor
- },
-
- textSize: {
- type: [String, Number],
- default: () => defProps.empty.textSize
- },
-
- iconColor: {
- type: String,
- default: () => defProps.empty.iconColor
- },
-
- iconSize: {
- type: [String, Number],
- default: () => defProps.empty.iconSize
- },
-
- mode: {
- type: String,
- default: () => defProps.empty.mode
- },
-
- width: {
- type: [String, Number],
- default: () => defProps.empty.width
- },
-
- height: {
- type: [String, Number],
- default: () => defProps.empty.height
- },
-
- show: {
- type: Boolean,
- default: () => defProps.empty.show
- },
-
- marginTop: {
- type: [String, Number],
- default: () => defProps.empty.marginTop
- }
- }
- })
|