Bil*_*adj 1 javascript vue.js vuetify.js
我为v-select组件设置了一个图标,但我想将其颜色更改为红色。
<div id="app">
<v-app id="inspire">
<v-container fluid>
<v-row align="center">
<v-col class="d-flex" cols="12" sm="6">
<v-select
:items="items"
label="Standard"
prepend-icon="edit"
></v-select>
</v-col>
</v-row>
</v-container>
</v-app>
</div>
Run Code Online (Sandbox Code Playgroud)
如何给图标上色?
只需使用插槽前置
<v-select
:items="items"
label="Standard">
<template v-slot:prepend>
<v-icon color="red">edit</v-icon>
</template>
</v-select>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6403 次 |
| 最近记录: |