mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-23 03:35:15 +00:00
29 lines
542 B
Vue
29 lines
542 B
Vue
|
<template>
|
||
|
<div class="container">
|
||
|
<center>
|
||
|
<v-img
|
||
|
src="/icon.svg"
|
||
|
width="10rem"
|
||
|
height="10rem"
|
||
|
:class="$vuetify.theme.dark ? '' : 'invert'"
|
||
|
/>
|
||
|
<h1>{{ lang.updated }}</h1>
|
||
|
<v-btn class="rounded-xl primary">{{ lang.awesome }}</v-btn>
|
||
|
</center>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
layout: "empty",
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
lang: {}
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
this.lang = this.$lang("events");
|
||
|
}
|
||
|
}
|
||
|
</script>
|