mirror of
https://github.com/certd/certd.git
synced 2026-04-16 05:50:50 +08:00
perf: 选项显示图标
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<a-select class="dns-provider-selector" :value="modelValue" :options="options" @update:value="onChanged"> </a-select>
|
||||
<icon-select class="dns-provider-selector" :value="modelValue" :options="options" @update:value="onChanged"> </icon-select>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
@@ -24,7 +24,8 @@ export default {
|
||||
for (let item of list) {
|
||||
array.push({
|
||||
value: item.name,
|
||||
label: item.title
|
||||
label: item.title,
|
||||
icon: item.icon
|
||||
});
|
||||
}
|
||||
options.value = array;
|
||||
|
||||
Reference in New Issue
Block a user