vant-weapp/dist/toast/index.js
2018-08-19 10:49:09 +08:00

33 lines
457 B
JavaScript

import Toast from './toast';
Component({
properties: {
show: Boolean,
mask: Boolean,
message: String,
forbidClick: Boolean,
type: {
type: String,
value: 'text'
},
loadingType: {
type: String,
value: 'circular'
},
position: {
type: String,
value: 'middle'
}
},
methods: {
clear() {
this.setData({
show: false
});
}
}
});
export default Toast;