I want to add a tooltip over the info icon. I am not able to figure out how can I do that. Help me out.
<v-flex xs12 md6 class="add-col-padding-right">
<v-text-field required
label='Information'
v-model='demo.information'
:rules='nameRule'
append-icon="info">
</v-text-field>
</v-flex>
Update
<v-flex xs12 md6 class="add-col-padding-right">
<v-text-field required label='Information' v-model='demo.information' :rules='nameRule'>
<template slot="append-outer">
<v-tooltip right>
<template v-slot:activator="{on}">
<v-icon v-on="on">place</v-icon>
</template>
<span>tooltip!</span>
</v-tooltip>
</template>
</v-text-field>
</v-flex>