From 1e61215b48e59e94c1ed98e4ef956227d689d6bc Mon Sep 17 00:00:00 2001
From: quanyawei <401863037@qq.com>
Date: Mon, 06 Nov 2023 08:48:39 +0800
Subject: [PATCH] fix:小程序订阅消息
---
uni_modules/uview-ui/components/u-checkbox/props.js | 69 ++++++++++++++++++++++++++++++++++
1 files changed, 69 insertions(+), 0 deletions(-)
diff --git a/uni_modules/uview-ui/components/u-checkbox/props.js b/uni_modules/uview-ui/components/u-checkbox/props.js
new file mode 100644
index 0000000..93f4fd9
--- /dev/null
+++ b/uni_modules/uview-ui/components/u-checkbox/props.js
@@ -0,0 +1,69 @@
+export default {
+ props: {
+ // checkbox���������
+ name: {
+ type: [String, Number, Boolean],
+ default: uni.$u.props.checkbox.name
+ },
+ // ���������square������������circle���������
+ shape: {
+ type: String,
+ default: uni.$u.props.checkbox.shape
+ },
+ // ���������������
+ size: {
+ type: [String, Number],
+ default: uni.$u.props.checkbox.size
+ },
+ // ������������������
+ checked: {
+ type: Boolean,
+ default: uni.$u.props.checkbox.checked
+ },
+ // ������������
+ disabled: {
+ type: [String, Boolean],
+ default: uni.$u.props.checkbox.disabled
+ },
+ // ���������������������������������������������������������parent���activeColor���
+ activeColor: {
+ type: String,
+ default: uni.$u.props.checkbox.activeColor
+ },
+ // ������������������
+ inactiveColor: {
+ type: String,
+ default: uni.$u.props.checkbox.inactiveColor
+ },
+ // ������������������������px
+ iconSize: {
+ type: [String, Number],
+ default: uni.$u.props.checkbox.iconSize
+ },
+ // ������������
+ iconColor: {
+ type: String,
+ default: uni.$u.props.checkbox.iconColor
+ },
+ // label���������������������nvue������������slot������������������������������������������������������������
+ label: {
+ type: [String, Number],
+ default: uni.$u.props.checkbox.label
+ },
+ // label������������������px������
+ labelSize: {
+ type: [String, Number],
+ default: uni.$u.props.checkbox.labelSize
+ },
+ // label���������
+ labelColor: {
+ type: String,
+ default: uni.$u.props.checkbox.labelColor
+ },
+ // ������������������������������������������
+ labelDisabled: {
+ type: [String, Boolean],
+ default: uni.$u.props.checkbox.labelDisabled
+ }
+ }
+}
--
Gitblit v1.8.0