Improve accessibility

This commit is contained in:
2020-05-05 12:47:28 +02:00
parent c40a32ca3d
commit cfd9e5410f
4 changed files with 14 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
<template>
<v-col cols="12" sm="8" md="6">
<v-card color="primary" dark>
<v-btn icon to="/">
<v-btn icon to="/" aria-label="Go back">
<v-icon>mdi-arrow-left</v-icon>
</v-btn>
<v-card-title class="text-center justify-center py-6">
+9 -1
View File
@@ -36,6 +36,7 @@
</template>
<template v-slot:item.actions="{ item }">
<v-icon
aria-label="See Note"
small
color="secondary"
dark
@@ -45,6 +46,7 @@
mdi-eye
</v-icon>
<v-icon
aria-label="Edit Note"
small
color="secondary"
dark
@@ -53,7 +55,13 @@
>
mdi-pencil
</v-icon>
<v-icon small color="secondary" dark @click="deleteItem(item)">
<v-icon
aria-label="Delete Note"
small
color="secondary"
dark
@click="deleteItem(item)"
>
mdi-delete
</v-icon>
</template>