v-movable icon indicating copy to clipboard operation
v-movable copied to clipboard

v-btn inside movable

Open veryverymuch opened this issue 4 years ago • 0 comments

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>

veryverymuch avatar Oct 13 '21 09:10 veryverymuch