mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
34 lines
492 B
JavaScript
34 lines
492 B
JavaScript
import { create } from '../common/create';
|
|
import Toast from './toast';
|
|
|
|
create({
|
|
props: {
|
|
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;
|