rex 66e2233e54
[new feature] Toast: add new option onClose & add new slot
fix #1185
fix #1551

pull request 改动点:

- add new option onClose
- add new slot
2019-04-22 16:57:26 +08:00

32 lines
488 B
TypeScript

import { VantComponent } from '../common/component';
VantComponent({
props: {
show: Boolean,
mask: Boolean,
message: String,
forbidClick: Boolean,
zIndex: {
type: Number,
value: 1000
},
type: {
type: String,
value: 'text'
},
loadingType: {
type: String,
value: 'circular'
},
position: {
type: String,
value: 'middle'
}
},
methods: {
// for prevent touchmove
noop() {}
}
});