vant-weapp/dist/toast/index.js
2018-08-22 10:32:27 +08:00

37 lines
501 B
JavaScript

import Toast from './toast';
Component({
options: {
addGlobalClass: true
},
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;