mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
37 lines
638 B
JavaScript
37 lines
638 B
JavaScript
import { VantComponent } from '../common/component';
|
|
|
|
VantComponent({
|
|
field: true,
|
|
|
|
classes: ['node-class'],
|
|
|
|
props: {
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
checked: {
|
|
type: Boolean,
|
|
observer(value) {
|
|
this.setData({ value });
|
|
}
|
|
},
|
|
size: {
|
|
type: String,
|
|
value: '30px'
|
|
}
|
|
},
|
|
|
|
attached() {
|
|
this.setData({ value: this.data.checked });
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
if (!this.data.disabled && !this.data.loading) {
|
|
const checked = !this.data.checked;
|
|
this.$emit('input', checked);
|
|
this.$emit('change', checked);
|
|
}
|
|
}
|
|
}
|
|
});
|