1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- export default {
- props: {
-
- title: {
- type: String,
- default: uni.$u.props.alert.title
- },
-
- type: {
- type: String,
- default: uni.$u.props.alert.type
- },
-
- description: {
- type: String,
- default: uni.$u.props.alert.description
- },
-
- closable: {
- type: Boolean,
- default: uni.$u.props.alert.closable
- },
-
- showIcon: {
- type: Boolean,
- default: uni.$u.props.alert.showIcon
- },
-
- effect: {
- type: String,
- default: uni.$u.props.alert.effect
- },
-
- center: {
- type: Boolean,
- default: uni.$u.props.alert.center
- },
-
- fontSize: {
- type: [String, Number],
- default: uni.$u.props.alert.fontSize
- }
- }
- }
|