123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- top: {
- type: [String, Number],
- default: () => defProps.notify.top
- },
-
-
-
-
-
-
- type: {
- type: String,
- default: () => defProps.notify.type
- },
-
- color: {
- type: String,
- default: () => defProps.notify.color
- },
-
- bgColor: {
- type: String,
- default: () => defProps.notify.bgColor
- },
-
- message: {
- type: String,
- default: () => defProps.notify.message
- },
-
- duration: {
- type: [String, Number],
- default: () => defProps.notify.duration
- },
-
- fontSize: {
- type: [String, Number],
- default: () => defProps.notify.fontSize
- },
-
- safeAreaInsetTop: {
- type: Boolean,
- default: () => defProps.notify.safeAreaInsetTop
- }
- }
- })
|