mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
34 lines
626 B
JavaScript
34 lines
626 B
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
field: true,
|
|
props: {
|
|
title: String,
|
|
border: Boolean,
|
|
checked: Boolean,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
activeColor: String,
|
|
inactiveColor: String,
|
|
size: {
|
|
type: String,
|
|
value: '24px'
|
|
}
|
|
},
|
|
watch: {
|
|
checked: function checked(value) {
|
|
this.set({
|
|
value: value
|
|
});
|
|
}
|
|
},
|
|
created: function created() {
|
|
this.set({
|
|
value: this.data.checked
|
|
});
|
|
},
|
|
methods: {
|
|
onChange: function onChange(event) {
|
|
this.$emit('change', event.detail);
|
|
}
|
|
}
|
|
}); |