UNPKG

yl-view

Version:

一个基于uniapp的ui框架

53 lines 807 B
export default{ props:{ showPopup:{ type:Boolean, default:false }, // 提示文字信息 tips:{ type:String, default:'' }, // 提示文字颜色 tipsColor:{ type:String, default:'#bbbdbf' }, // 提示文字大小 tipsSize:{ type:String, default:'26rpx' }, // 是否显示提示文字 isShowTips:{ type:Boolean, default:true }, // 操作列表数据 list:{ type:Array, default:() => [] }, // 列表颜色 listColor:{ type:String, default:'#303133' }, // 列表字体大小 listSize:{ type:String, default:'32rpx' }, // 圆角属性 round:{ type:Number, default:20 }, // 是否展示取消 isShowCancel:{ type:Boolean, default:true } } }