vuetifyjs / vuetify

🐉 Vue Component Framework
https://vuetifyjs.com
MIT License
39.06k stars 6.91k forks source link

fix(VChip): prevent text selection for link chips #19653

Closed MetRonnie closed 1 week ago

MetRonnie commented 1 week ago

Description

Dragging the cursor slightly while clicking a VChip with the link prop (or otherwise clickable with @click I think) would cause the text to become selected. This PR prevents text selection.

Markup:

<template>
  <v-app>
    <v-main>
      <v-chip link>Try selecting me</v-chip>
    </v-main>
  </v-app>
</template>