push
github
503 of 772 branches covered (0.0%)
34 of 65 new or added lines in 14 files covered. (52.31%)
13502 existing lines in 185 files now uncovered.9060 of 34265 relevant lines covered (26.44%)
11.53 hits per line
1 |
<template>
|
|
UNCOV
2
|
<v-list-item :disabled="loading" @click.stop="generatePdf"> |
× |
UNCOV
3
|
<v-list-item-icon> |
× |
UNCOV
4
|
<v-icon v-if="loading" class="mdi-spin">mdi-loading</v-icon> |
× |
UNCOV
5
|
<v-icon v-else>mdi-printer</v-icon>
|
× |
UNCOV
6
|
</v-list-item-icon> |
× |
UNCOV
7
|
<v-list-item-title> |
× |
UNCOV
8
|
{{ $tc('components.print.printNuxt.downloadNuxtPdfListItem.label') }} |
× |
UNCOV
9
|
</v-list-item-title> |
× |
UNCOV
10
|
</v-list-item> |
× |
UNCOV
11
|
</template>
|
× |
UNCOV
12
|
|
× |
UNCOV
13
|
<script> |
× |
UNCOV
14
|
import { generatePdfMixin } from './generatePdfMixin.js' |
× |
UNCOV
15
|
|
× |
UNCOV
16
|
export default { |
× |
UNCOV
17
|
name: 'DownloadNuxtPdfListItem', |
× |
UNCOV
18
|
mixins: [generatePdfMixin], |
× |
UNCOV
19
|
} |
× |
UNCOV
20
|
</script> |
× |