mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 05:18:10 +00:00
53 lines
822 B
Vue
53 lines
822 B
Vue
<template>
|
|
<div
|
|
class="image-preview"
|
|
@click="store.vehiclePreviewSrc = ''"
|
|
@keydown.esc="store.vehiclePreviewSrc = ''"
|
|
tabindex="0"
|
|
>
|
|
<img :src="store.vehiclePreviewSrc" alt="preview" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import { useStore } from "../../store";
|
|
|
|
export default defineComponent({
|
|
data() {
|
|
return {
|
|
store: useStore(),
|
|
};
|
|
},
|
|
|
|
mounted() {
|
|
this.$el.focus();
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.image-preview {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 99;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
background: rgba(black, 0.85);
|
|
cursor: zoom-out;
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
max-height: 100%;
|
|
}
|
|
}
|
|
</style>
|