12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- export default {
- props: {
-
- top: {
- type: [String, Number],
- default: uni.$u.props.notify.top
- },
-
-
-
-
-
-
- type: {
- type: String,
- default: uni.$u.props.notify.type
- },
-
- color: {
- type: String,
- default: uni.$u.props.notify.color
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.notify.bgColor
- },
-
- message: {
- type: String,
- default: uni.$u.props.notify.message
- },
-
- duration: {
- type: [String, Number],
- default: uni.$u.props.notify.duration
- },
-
- fontSize: {
- type: [String, Number],
- default: uni.$u.props.notify.fontSize
- },
-
- safeAreaInsetTop: {
- type: Boolean,
- default: uni.$u.props.notify.safeAreaInsetTop
- }
- }
- }
|