This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/frontend/src/views/Home.vue

32 lines
520 B
Vue
Raw Normal View History

2019-02-22 19:23:42 +00:00
<template>
2019-05-06 02:05:32 +00:00
<v-container>
<v-flex mb-4>
<h1 class="display-2 font-weight-bold mb-3">
Hello World!
</h1>
<p class="subheading font-weight-regular">
App under development, please don't submit any valuable data!
</p>
</v-flex>
<LoginForm />
</v-container>
2019-02-22 19:23:42 +00:00
</template>
<script>
2019-05-06 02:05:32 +00:00
import LoginForm from '@/components/forms/Login.vue'
2019-02-22 19:23:42 +00:00
export default {
2019-05-06 02:05:32 +00:00
name: 'Home',
data() {
return {
dialog: false
}
},
2019-02-22 19:23:42 +00:00
components: {
2019-05-06 02:05:32 +00:00
LoginForm
2019-02-22 19:23:42 +00:00
}
}
</script>