VueTube/NUXT/pages/activities/update.vue

59 lines
1.0 KiB
Vue
Raw Normal View History

2022-06-15 00:08:45 +00:00
<template>
2022-06-18 12:36:14 +00:00
<div>
<center class="container">
2022-06-15 00:08:45 +00:00
<v-img
src="/icon.svg"
width="10rem"
height="10rem"
:class="$vuetify.theme.dark ? '' : 'invert'"
/>
<h1>{{ lang.updated }}</h1>
</center>
2022-06-18 12:36:14 +00:00
<v-btn @click="okay()" class="rounded-xl primary nextButton">{{ lang.awesome }} <v-icon style="margin-left: 0.5em;">mdi-arrow-right</v-icon></v-btn>
2022-06-15 00:08:45 +00:00
</div>
</template>
2022-06-18 12:36:14 +00:00
<style scoped>
.nextButton {
position: absolute;
bottom: 1em;
left: 50%;
transform: translate(-50%, 0);
}
.hidden {
display: none;
}
.fullWidth {
width: 100%;
}
.container {
width: 100%;
}
</style>
2022-06-15 00:08:45 +00:00
<script>
2022-06-18 12:36:14 +00:00
import language from '~/components/Settings/language.vue';
export default {
2022-06-15 00:08:45 +00:00
layout: "empty",
2022-06-18 12:36:14 +00:00
components: {
language
},
2022-06-15 00:08:45 +00:00
data() {
return {
2022-06-18 12:36:14 +00:00
lang: {},
2022-06-15 00:08:45 +00:00
}
},
mounted() {
this.lang = this.$lang("events");
2022-06-18 12:36:14 +00:00
},
methods: {
okay() {
this.$router.replace('/');
}
2022-06-15 00:08:45 +00:00
}
}
</script>