mirror of
https://github.com/certd/certd.git
synced 2026-05-15 04:27:31 +08:00
23 lines
604 B
Vue
23 lines
604 B
Vue
<template>
|
|
<a-select :value="value" @update:value="onChange">
|
|
<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 }[];
|
|
value: any;
|
|
}>();
|
|
|
|
const emit = defineEmits(["update:value"]);
|
|
function onChange(value: any) {
|
|
emit("update:value", value);
|
|
}
|
|
</script>
|