mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
49 lines
810 B
TypeScript
49 lines
810 B
TypeScript
import { VantComponent } from '../common/component';
|
|
import { Weapp } from 'definitions/weapp';
|
|
|
|
VantComponent({
|
|
field: true,
|
|
|
|
props: {
|
|
value: null,
|
|
icon: String,
|
|
title: String,
|
|
label: String,
|
|
border: Boolean,
|
|
checked: Boolean,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
activeColor: String,
|
|
inactiveColor: String,
|
|
useLabelSlot: Boolean,
|
|
size: {
|
|
type: String,
|
|
value: '24px'
|
|
},
|
|
activeValue: {
|
|
type: null,
|
|
value: true
|
|
},
|
|
inactiveValue: {
|
|
type: null,
|
|
value: false
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
checked(value) {
|
|
this.set({ value });
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.set({ value: this.data.checked });
|
|
},
|
|
|
|
methods: {
|
|
onChange(event: Weapp.Event) {
|
|
this.$emit('change', event.detail);
|
|
}
|
|
}
|
|
});
|