v-movable
v-movable copied to clipboard
v-btn inside movable
I have a v-btn inside a v-card inside a movable. Everything works fine in Firefox. But in Chromium, the button only works when I click not on the text (CLOSE) but on the margin outside the text. When I remove the text, it works normally. But I would like to have a text as description.
This is my code:
<template> <movable :id="myId" :posTop="lastTop" :posLeft="lastLeft" class="testmove"> <v-card :style="myStyle"> <v-btn @click="close" move-disabled="true" type="button" text> close </v-btn> </v-card> </movable> </template>