yl-view
Version:
一个基于uniapp的ui框架
30 lines (29 loc) • 409 B
JavaScript
export default {
props: {
// 名字
name: {
type: String,
default: ''
},
// 大小
size: {
type: [Number, String],
default: 40
},
// 颜色
color: {
type: String,
default: ''
},
// 主题,同主题色名称
theme: {
type: String,
default: ''
},
// icon宽度(yl-rate评分用到)
width: {
type: String,
default: ''
}
},
}