add print-view component (#407)

Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
Hayden
2021-05-14 21:10:03 -08:00
committed by GitHub
parent 35adc341e6
commit 3804e1d52c
8 changed files with 189 additions and 192 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div>
<div class="d-print-none no-print">
<v-navigation-drawer v-model="showSidebar" width="180px" clipped app>
<template v-slot:prepend>
<v-list-item two-line v-if="isLoggedIn" to="/admin/profile">
@@ -231,4 +231,10 @@ export default {
bottom: 0 !important;
width: 100%;
}
@media print {
.no-print {
display: none;
}
}
</style>