22 lines
457 B
Vue
22 lines
457 B
Vue
<template>
|
|
<q-btn color="primary" data-cy="button">
|
|
Button
|
|
<q-tooltip v-model="showTooltip" data-cy="tooltip" class="bg-red" :offset="[10, 10]"> Here I am! </q-tooltip>
|
|
</q-btn>
|
|
</template>
|
|
|
|
<script>
|
|
import { ref, defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
name: 'QuasarTooltip',
|
|
setup() {
|
|
const showTooltip = ref(true);
|
|
|
|
return {
|
|
showTooltip,
|
|
};
|
|
},
|
|
});
|
|
</script>
|