This commit is contained in:
24
frontend/app/components/partials/VersionRender.vue
Normal file
24
frontend/app/components/partials/VersionRender.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<script setup>
|
||||
const config = useRuntimeConfig()
|
||||
</script>
|
||||
|
||||
|
||||
<template>
|
||||
<div class="version-render">
|
||||
<span>Dragonroll {{ config.public.gitTag }}-{{ config.public.gitCommit }}@{{ config.public.gitBranch }}</span>
|
||||
<br><span>{{ config.public.buildDate }}</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<style scoped>
|
||||
.version-render {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
user-select: none;
|
||||
}
|
||||
span{
|
||||
color: rgb(59, 59, 59);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user