yl-view
Version:
一个基于uniapp的ui框架
54 lines • 858 B
JavaScript
export default {
props:{
// 双向绑定值
value:{
type:String,
default:''
},
// 提示文字
placeholder:{
type:String,
default:'请输入关键字'
},
// 搜索框背景色
bgColor:{
type:String,
default:'#F2F2F2'
},
// 提示文字颜色
placeholderColor:{
type:String,
default:'#909399'
},
// 提示文字尺寸
placeholderSize:{
type:String,
default:'26rpx'
},
// 是否允许切换音频
isShowVideo:{
type:Boolean,
default:true
},
// 图标颜色
iconColor:{
type:String,
default:'#cccccc'
},
// 图标尺寸
iconSize:{
type:Number,
default:50
},
// 搜索框圆角
borderRadius:{
type:String,
default:'66rpx'
},
// 搜索框长度
height:{
type:String,
default:'66rpx'
}
}
}