You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
454 B

3 years ago
  1. <template>
  2. <v-tooltip bottom>
  3. <template #activator="{ on }">
  4. <v-btn
  5. icon
  6. v-on="on"
  7. @click="$emit('click:clear')"
  8. >
  9. <v-icon>
  10. {{ mdiDeleteOutline }}
  11. </v-icon>
  12. </v-btn>
  13. </template>
  14. <span>Clear labels</span>
  15. </v-tooltip>
  16. </template>
  17. <script>
  18. import { mdiDeleteOutline } from '@mdi/js'
  19. export default {
  20. data() {
  21. return {
  22. mdiDeleteOutline
  23. }
  24. },
  25. }
  26. </script>