Select Git revision
ImageView.vue 409 B
<template>
<div>
<div id="image-container">
<img :src="`/api/image/${flake}/file`" alt="" />
</div>
</div>
</template>
<script>
export default {
computed: {
flake: () => {
return window.location.pathname.split("/").pop();
},
},
};
</script>
<style scoped>
img {
height: 100%;
}
#image-container {
height: 100vh;
display: flex;
justify-content: center;
}
</style>