|
|
|
@ -30,7 +30,7 @@ watchEffect(() => {
|
|
|
|
|
<template #nav-bar-content-before><slot name="nav-bar-content-before" /></template>
|
|
|
|
|
<template #nav-bar-content-after><slot name="nav-bar-content-after" /></template>
|
|
|
|
|
</VPNavBar>
|
|
|
|
|
<VPNavScreen :open="isScreenOpen">
|
|
|
|
|
<VPNavScreen :open="isScreenOpen" class="VPNavScreen">
|
|
|
|
|
<template #nav-screen-content-before><slot name="nav-screen-content-before" /></template>
|
|
|
|
|
<template #nav-screen-content-after><slot name="nav-screen-content-after" /></template>
|
|
|
|
|
</VPNavScreen>
|
|
|
|
@ -54,4 +54,14 @@ watchEffect(() => {
|
|
|
|
|
position: fixed;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media print {
|
|
|
|
|
.VPNav {
|
|
|
|
|
position: fixed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.VPNavScreen {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|