123456789101112131415161718192021222324 |
- export default {
- props: {
-
- show: {
- type: Boolean,
- default: uni.$u.props.transition.show
- },
-
- mode: {
- type: String,
- default: uni.$u.props.transition.mode
- },
-
- duration: {
- type: [String, Number],
- default: uni.$u.props.transition.duration
- },
-
- timingFunction: {
- type: String,
- default: uni.$u.props.transition.timingFunction
- }
- }
- }
|