config_tools: remove footer version link

remove footer version link

Tracked-On: #6691
Signed-off-by: Weiyi Feng <weiyix.feng@intel.com>
This commit is contained in:
Weiyi Feng 2022-05-26 06:11:10 +08:00 committed by acrnsi-robot
parent bb1522f0b1
commit 7273cb5449
1 changed files with 2 additions and 10 deletions

View File

@ -2,15 +2,12 @@
<div class="pt-3">
<p class="text-center text-secondary">
© Copyright Project ACRN, a Series of LF Projects, LLC.
<text v-if="version" @click="home">- Version {{ version }}</text>
<text v-if="version">- Version {{ version }}</text>
</p>
</div>
</template>
<script>
import {getVersion} from "@tauri-apps/api/app";
export default {
name: "Footer",
data: () => {
@ -20,11 +17,6 @@ export default {
},
mounted() {
this.version = packageVersion
},
methods: {
home() {
this.$router.push('/')
},
}
}
</script>