vant-weapp/dist/toast/index.js
2018-09-07 10:32:16 +08:00

31 lines
440 B
JavaScript

import { create } from '../common/create';
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
});
}
}
});