mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
37 lines
501 B
JavaScript
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;
|