mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
30 lines
651 B
JavaScript
30 lines
651 B
JavaScript
import { VantComponent } from '../common/component';
|
|
import { button } from '../mixins/button';
|
|
import { openType } from '../mixins/open-type';
|
|
VantComponent({
|
|
mixins: [button, openType],
|
|
classes: ['hover-class', 'loading-class'],
|
|
props: {
|
|
plain: Boolean,
|
|
block: Boolean,
|
|
round: Boolean,
|
|
square: Boolean,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
type: {
|
|
type: String,
|
|
value: 'default'
|
|
},
|
|
size: {
|
|
type: String,
|
|
value: 'normal'
|
|
}
|
|
},
|
|
methods: {
|
|
onClick: function onClick() {
|
|
if (!this.data.disabled && !this.data.loading) {
|
|
this.$emit('click');
|
|
}
|
|
}
|
|
}
|
|
}); |