Browse Source

Add comment button

pull/1251/head
Hironsan 3 years ago
parent
commit
5f69902e17
1 changed files with 16 additions and 0 deletions
  1. 16
      frontend/components/tasks/toolbar/buttons/ButtonComment.vue

16
frontend/components/tasks/toolbar/buttons/ButtonComment.vue

@ -0,0 +1,16 @@
<template>
<v-tooltip bottom>
<template v-slot:activator="{ on }">
<v-btn
icon
v-on="on"
@click="$emit('click:comment')"
>
<v-icon>
mdi-chat
</v-icon>
</v-btn>
</template>
<span>{{ $t('annotation.commentTooltip') }}</span>
</v-tooltip>
</template>
Loading…
Cancel
Save