123456789101112131415161718192021 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- tips: {
- type: String,
- default: () => defProps.noNetwork.tips
- },
-
- zIndex: {
- type: [String, Number],
- default: () => defProps.noNetwork.zIndex
- },
-
- image: {
- type: String,
- default: () => defProps.noNetwork.image
- }
- }
- })
|