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.

29 lines
479 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:auto')"
  8. >
  9. <v-icon>
  10. {{ mdiAutoFix }}
  11. </v-icon>
  12. </v-btn>
  13. </template>
  14. <span>Auto Labeling</span>
  15. </v-tooltip>
  16. </template>
  17. <script lang="ts">
  18. import Vue from 'vue'
  19. import { mdiAutoFix } from '@mdi/js'
  20. export default Vue.extend({
  21. data() {
  22. return {
  23. mdiAutoFix
  24. }
  25. }
  26. })
  27. </script>