Can someone help me to resolve my issue , I have a modal who need a tool tip on the 'Open dialog' button ,
This is an example here from vuetify: https://codepen.io/czechsebastian/pen/mdyyWze?&editable=true&editors=101
I want display a text when i hover the button using the vuetify tooltip.
thanks a lot
<div id="app">
<v-app id="inspire">
<v-row justify="center">
<v-dialog v-model="dialog" persistent max-width="290">
<template v-slot:activator="{ on }">
<v-btn color="primary" dark v-on="on">Open Dialog</v-btn>
</template>
<v-card>
<v-card-title class="headline">Use Google's location service?</v-card-title>
<v-card-text>Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="green darken-1" text @click="dialog = false">Disagree</v-btn>
<v-btn color="green darken-1" text @click="dialog = false">Agree</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</v-row>
</v-app>
</div>