123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- loadingText: {
- type: [String, Number],
- default: () => defProps.loadingPage.loadingText
- },
-
- image: {
- type: String,
- default: () => defProps.loadingPage.image
- },
-
- loadingMode: {
- type: String,
- default: () => defProps.loadingPage.loadingMode
- },
-
- loading: {
- type: Boolean,
- default: () => defProps.loadingPage.loading
- },
-
- bgColor: {
- type: String,
- default: () => defProps.loadingPage.bgColor
- },
-
- color: {
- type: String,
- default: () => defProps.loadingPage.color
- },
-
- fontSize: {
- type: [String, Number],
- default: () => defProps.loadingPage.fontSize
- },
-
- iconSize: {
- type: [String, Number],
- default: () => defProps.loadingPage.fontSize
- },
-
- loadingColor: {
- type: String,
- default: () => defProps.loadingPage.loadingColor
- },
-
- zIndex: {
- type: [Number],
- default: () => defProps.loadingPage.zIndex
- },
- }
- })
|