0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-17 08:45:13 +00:00
VueTube/NUXT/pages/activities/install.vue
Kenny a6a817f3a9 docs: Basic Italian Language Translation
Add a language translation for Italian - only supports some parts of the app; can be added via the registry editor with key:"language" value:"italian"
2022-06-14 20:55:45 -04:00

30 lines
No EOL
634 B
Vue

<template>
<div class="container">
<center>
<v-img
src="/icon.svg"
width="10rem"
height="10rem"
:class="$vuetify.theme.dark ? '' : 'invert'"
/>
<h1>{{ lang.welcome }}</h1>
<p>{{ lang.tagline }}</p>
<v-btn class="rounded-xl primary">{{ lang.next }} <v-icon style="margin-left: 0.5em;">mdi-arrow-right</v-icon></v-btn>
</center>
</div>
</template>
<script>
export default {
layout: "empty",
data() {
return {
lang: {}
}
},
mounted() {
this.lang = this.$lang("events");
}
}
</script>