Files
wangxiaowei 5d7b75a14e first commit
2025-12-09 13:35:21 +08:00

14 lines
163 B
Vue

<template>
<i :class="'el-icon-' + name"></i>
</template>
<script>
export default {
name: 'ElIcon',
props: {
name: String
}
};
</script>