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
UNCOV
1
|
<!-- |
|
UNCOV
2
|
Basic layout for print preview
|
× |
UNCOV
3
|
--> |
× |
UNCOV
4
|
|
× |
5 |
<template>
|
× |
UNCOV
6
|
<content-card :title="$tc('views.camp.print.title')" toolbar>
|
× |
UNCOV
7
|
<print-configurator :camp="camp" />
|
× |
UNCOV
8
|
</content-card> |
× |
UNCOV
9
|
</template>
|
× |
UNCOV
10
|
|
× |
UNCOV
11
|
<script> |
× |
UNCOV
12
|
import ContentCard from '@/components/layout/ContentCard.vue' |
× |
UNCOV
13
|
import PrintConfigurator from '@/components/print/PrintConfigurator.vue' |
× |
UNCOV
14
|
|
× |
UNCOV
15
|
export default { |
× |
UNCOV
16
|
name: 'Print', |
× |
UNCOV
17
|
components: { |
× |
UNCOV
18
|
ContentCard, |
× |
UNCOV
19
|
PrintConfigurator, |
× |
UNCOV
20
|
}, |
× |
UNCOV
21
|
props: {
|
× |
UNCOV
22
|
camp: { type: Function, required: true }, |
× |
UNCOV
23
|
}, |
× |
UNCOV
24
|
data() { |
× |
UNCOV
25
|
return {}
|
× |
UNCOV
26
|
}, |
× |
UNCOV
27
|
} |
× |
UNCOV
28
|
</script> |
× |
UNCOV
29
|
|
× |
UNCOV
30
|
<style scoped></style> |
× |