forked from zhurui/management
14 lines
163 B
Vue
14 lines
163 B
Vue
|
<template>
|
||
|
<i :class="'el-icon-' + name"></i>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'ElIcon',
|
||
|
|
||
|
props: {
|
||
|
name: String
|
||
|
}
|
||
|
};
|
||
|
</script>
|