Files
certd/packages/ui/certd-client/src/components/icon-select.vue
2025-06-29 14:09:09 +08:00

17 lines
440 B
Vue

<template>
<a-select>
<a-select-option v-for="item of options" :key="item.value" :value="item.value" :label="item.label">
<span class="flex-o">
<fs-icon :icon="item.icon" class="fs-16 color-blue mr-5" />
{{ item.label }}
</span>
</a-select-option>
</a-select>
</template>
<script lang="ts" setup>
const props = defineProps<{
options: { value: any; label: string; icon: string }[];
}>();
</script>