refactor: reorganize all components (#8303)
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
import { PropType, defineComponent } from 'vue';
|
||||
import { addUnit, createNamespace } from '../utils';
|
||||
import Badge from '../badge';
|
||||
|
||||
const [name, bem] = createNamespace('icon');
|
||||
|
||||
function isImage(name?: string) {
|
||||
return name ? name.includes('/') : false;
|
||||
}
|
||||
|
||||
export default defineComponent({
|
||||
name,
|
||||
|
||||
props: {
|
||||
dot: Boolean,
|
||||
name: String,
|
||||
size: [Number, String],
|
||||
badge: [Number, String],
|
||||
color: String,
|
||||
tag: {
|
||||
type: String as PropType<keyof HTMLElementTagNameMap>,
|
||||
default: 'i',
|
||||
},
|
||||
classPrefix: {
|
||||
type: String,
|
||||
default: bem(),
|
||||
},
|
||||
},
|
||||
|
||||
setup(props, { slots }) {
|
||||
return () => {
|
||||
const { tag, dot, name, size, badge, color, classPrefix } = props;
|
||||
const isImageIcon = isImage(name);
|
||||
|
||||
return (
|
||||
<Badge
|
||||
dot={dot}
|
||||
tag={tag}
|
||||
content={badge}
|
||||
class={[classPrefix, isImageIcon ? '' : `${classPrefix}-${name}`]}
|
||||
style={{
|
||||
color,
|
||||
fontSize: addUnit(size),
|
||||
}}
|
||||
>
|
||||
{slots.default?.()}
|
||||
{isImageIcon && <img class={bem('image')} src={name} />}
|
||||
</Badge>
|
||||
);
|
||||
};
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user