Browse Source

Add clear button

pull/1251/head
Hironsan 4 years ago
parent
commit
1844353b83
1 changed files with 16 additions and 0 deletions
  1. 16
      frontend/components/tasks/toolbar/buttons/ButtonClear.vue

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

@ -0,0 +1,16 @@
<template>
<v-tooltip bottom>
<template v-slot:activator="{ on }">
<v-btn
icon
v-on="on"
@click="$emit('click:clear')"
>
<v-icon>
mdi-delete-outline
</v-icon>
</v-btn>
</template>
<span>Clear all label</span>
</v-tooltip>
</template>
Loading…
Cancel
Save