mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
33 lines
514 B
JavaScript
33 lines
514 B
JavaScript
import { VantComponent } from '../common/component';
|
|
|
|
VantComponent({
|
|
field: true,
|
|
|
|
props: {
|
|
title: String,
|
|
border: Boolean,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
checked: {
|
|
type: Boolean,
|
|
observer(value) {
|
|
this.setData({ value });
|
|
}
|
|
},
|
|
size: {
|
|
type: String,
|
|
value: '26px'
|
|
}
|
|
},
|
|
|
|
attached() {
|
|
this.setData({ value: this.data.checked });
|
|
},
|
|
|
|
methods: {
|
|
onChange(event) {
|
|
this.$emit('change', event.detail);
|
|
}
|
|
}
|
|
});
|