P粉0217082752023-08-26 09:02:27
您可以使用item
插槽來自訂標籤的渲染:
<v-select :items="items" label="Standard" background-color="#000000" color="#ffffff"> <template #item="{item}"> <span style="color:white; background:blue">{{item.name}}<span> </template> </v-select>