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.

24 lines
459 B

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