mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
45 lines
1.0 KiB
JavaScript
45 lines
1.0 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var component_1 = require("../common/component");
|
|
component_1.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: function (value) {
|
|
this.set({ value: value });
|
|
}
|
|
},
|
|
created: function () {
|
|
this.set({ value: this.data.checked });
|
|
},
|
|
methods: {
|
|
onChange: function (event) {
|
|
this.$emit('change', event.detail);
|
|
}
|
|
}
|
|
});
|