1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| 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],
| };
|
|