Appending multiple icons to inputs in Vuetify.js
You can use slots append
or append-outer
, you can add whatever you want in there.
v-text-field label="Answer (optional)">
<template slot="append">
<v-icon>clear</v-icon>
<v-icon>search</v-icon>
</template>
</v-text-field>
Codepen