12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- show: {
- type: Boolean,
- default: () => defProps.loadingIcon.show
- },
-
- color: {
- type: String,
- default: () => defProps.loadingIcon.color
- },
-
- textColor: {
- type: String,
- default: () => defProps.loadingIcon.textColor
- },
-
- vertical: {
- type: Boolean,
- default: () => defProps.loadingIcon.vertical
- },
-
- mode: {
- type: String,
- default: () => defProps.loadingIcon.mode
- },
-
- size: {
- type: [String, Number],
- default: () => defProps.loadingIcon.size
- },
-
- textSize: {
- type: [String, Number],
- default: () => defProps.loadingIcon.textSize
- },
-
- text: {
- type: [String, Number],
- default: () => defProps.loadingIcon.text
- },
-
- timingFunction: {
- type: String,
- default: () => defProps.loadingIcon.timingFunction
- },
-
- duration: {
- type: [String, Number],
- default: () => defProps.loadingIcon.duration
- },
-
- inactiveColor: {
- type: String,
- default: () => defProps.loadingIcon.inactiveColor
- }
- }
- })
|