You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

39 lines
612 B

import { t } from "/@/locale";
export const Props = {
// 组件高
height: [String, Number],
// 占位文本
placeholder: {
type: String,
default: t("请选择"),
},
// 是否禁用
disabled: {
type: Boolean,
default: null,
},
// 是否带有边框
border: {
type: Boolean,
default: true,
},
// 是否圆角
round: {
type: Boolean,
default: null,
},
// 图标
arrowIcon: {
type: String,
default: "cl-icon-arrow-bottom",
},
// 背景色
backgroundColor: String,
// 圆角边框
borderRadius: [String, Number, Array],
// 内间距
padding: [String, Number, Array],
};