首页 > TAG信息列表 > IconText

在vue3中封装一个icon+text组件

使用element-plus时,遇到icon图标与文字不对齐的情况,可以使用flex布局使其对齐,设置相同字体尺寸使其美观。 为方便使用,可以封装一下 新建一个vue文件IconText.vue <script setup> import { computed } from '@vue/reactivity' defineProps(['icon', 'text']) </script> <template>