2022-03-02 19:11:16 +00:00
|
|
|
<template>
|
2022-03-10 14:59:50 +00:00
|
|
|
<center style="padding: 1em;">
|
|
|
|
|
|
|
|
<v-img src="/icon.svg" width="100px" />
|
|
|
|
<h1 class="pageTitle">VueTube</h1>
|
|
|
|
|
|
|
|
<v-btn @click="openExternal('https://github.com/Frontesque/VueTube')"><v-icon>mdi-github</v-icon></v-btn>
|
|
|
|
<v-btn @click="openExternal('https://discord.gg/7P8KJrdd5W')"><v-icon>mdi-discord</v-icon></v-btn>
|
|
|
|
<p>App Version: {{ version }}</p>
|
2022-03-02 19:11:16 +00:00
|
|
|
</center>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.pageTitle {
|
2022-03-10 14:59:50 +00:00
|
|
|
margin-bottom: 1em;
|
2022-03-02 19:11:16 +00:00
|
|
|
}
|
|
|
|
</style>
|
2022-03-10 14:59:50 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
import { Browser } from '@capacitor/browser';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
version: process.env.appVersion
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async openExternal(url) {
|
|
|
|
await Browser.open({ url: url });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|