UNPKG

wangbd-myui

Version:

MY前端基础框架核心组件库

14 lines (13 loc) 242 B
export default { props: { icon: [String, Object] }, computed: { iconProps() { if (!this.icon) return null return typeof this.icon === 'object' ? this.icon : {name: this.icon} } } }