mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
40 lines
1023 B
JavaScript
40 lines
1023 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var component_1 = require("../common/component");
|
|
var button_1 = require("../mixins/button");
|
|
var open_type_1 = require("../mixins/open-type");
|
|
component_1.VantComponent({
|
|
mixins: [button_1.button, open_type_1.openType],
|
|
classes: ['hover-class', 'loading-class'],
|
|
props: {
|
|
icon: String,
|
|
plain: Boolean,
|
|
block: Boolean,
|
|
round: Boolean,
|
|
square: Boolean,
|
|
loading: Boolean,
|
|
hairline: Boolean,
|
|
disabled: Boolean,
|
|
loadingText: String,
|
|
type: {
|
|
type: String,
|
|
value: 'default'
|
|
},
|
|
size: {
|
|
type: String,
|
|
value: 'normal'
|
|
},
|
|
loadingSize: {
|
|
type: String,
|
|
value: '20px'
|
|
}
|
|
},
|
|
methods: {
|
|
onClick: function () {
|
|
if (!this.data.disabled && !this.data.loading) {
|
|
this.$emit('click');
|
|
}
|
|
}
|
|
}
|
|
});
|