VueTube/NUXT/pages/mods/about.vue

64 lines
1.6 KiB
Vue
Raw Normal View History

2022-03-02 19:11:16 +00:00
<template>
2022-03-21 23:47:11 +00:00
<center style="padding: 1em">
2022-03-21 04:27:47 +00:00
<div class="row pa-4" style="flex-direction: column">
<div>
<v-img
src="/icon.svg"
width="100px"
:class="$vuetify.theme.dark ? '' : 'invert'"
/>
</div>
2022-03-21 23:47:11 +00:00
<v-spacer />
<div>
<h1 class="pageTitle mb-3">VueTube</h1>
2022-03-21 23:47:11 +00:00
<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
>
</div>
</div>
2022-03-13 21:18:45 +00:00
2022-03-21 23:47:11 +00:00
<h3 style="margin-top: 2em">App Information</h3>
2022-03-13 21:18:45 +00:00
<div>App Version: {{ version.substring(0, 7) }}</div>
2022-03-21 23:47:11 +00:00
<h3 style="margin-top: 1em">Device Information</h3>
2022-03-13 21:18:45 +00:00
<div>Platform: {{ deviceInfo.platform }}</div>
2022-03-14 17:13:24 +00:00
<div>OS: {{ deviceInfo.operatingSystem }} ({{ deviceInfo.osVersion }})</div>
2022-03-13 21:18:45 +00:00
<div>Model: {{ deviceInfo.model }}</div>
<div>Manufacturer: {{ deviceInfo.manufacturer }}</div>
<div>Emulator: {{ deviceInfo.isVirtual ? "yes" : "no" }}</div>
2022-03-02 19:11:16 +00:00
</center>
</template>
<script>
2022-03-21 23:47:11 +00:00
import { Browser } from "@capacitor/browser";
import { Device } from "@capacitor/device";
export default {
data() {
return {
2022-03-13 21:18:45 +00:00
version: process.env.appVersion,
deviceInfo: "",
2022-03-21 23:47:11 +00:00
};
},
async mounted() {
const info = await Device.getInfo();
this.deviceInfo = info;
},
methods: {
async openExternal(url) {
await Browser.open({ url: url });
2022-03-21 23:47:11 +00:00
},
2022-03-13 21:18:45 +00:00
},
2022-03-21 23:47:11 +00:00
};
</script>
<style scoped>
.pageTitle {
margin-bottom: 1em;
}
</style>