国际化、主题处理

This commit is contained in:
Gary Fu
2023-12-17 15:49:30 +08:00
parent 45ccfddba5
commit d49cd6c1eb
7 changed files with 43 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
<script setup>
defineProps({
icon: {
type: String,
required: true
}
})
</script>
<template>
<el-icon>
<component
:is="icon"
/>
</el-icon>
</template>