add about info from package.json

This commit is contained in:
2022-11-25 05:22:40 +01:00
parent 57dce6af3d
commit 1dcc7c81c7
5 changed files with 82 additions and 9 deletions

View File

@@ -1,8 +1,78 @@
<script>
import { defineComponent } from 'vue';
import { PACKAGE_JSON } from '../app.config';
export default defineComponent({
data() {
return {
name: PACKAGE_JSON.name,
version: PACKAGE_JSON.version,
author: PACKAGE_JSON.author,
homepage: PACKAGE_JSON.homepage,
};
},
});
</script>
<style lang="scss" scoped>
.about {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
font-family: monospace;
div {
h3 {
text-align: center;
color: #4ee;
}
.row {
display: flex;
flex-direction: row;
div {
display: flex;
flex: 1;
padding: 2px 4px;
}
div:nth-of-type(1) {
justify-content: flex-end;
color: #4b4;
}
div:nth-of-type(2) {
justify-content: flex-start;
}
}
}
}
</style>
<template>
<div class="about">
<h1>This is an about page</h1>
<div>
<h3>{{ name }}</h3>
<div class="row">
<div>version:</div>
<div class="selectable">{{ version }}</div>
</div>
<div class="row">
<div>source code:</div>
<div><a :href="homepage" target="_blank">github</a></div>
</div>
<div class="row">
<div>author:</div>
<div class="selectable">{{ author }}</div>
</div>
</div>
</div>
</template>
<style scoped>
</style>