2020-12-21 22:06:13 +01:00
|
|
|
<template>
|
|
|
|
<v-row justify="center" align="center">
|
|
|
|
<v-col cols="12" sm="8" md="6">
|
2020-12-21 22:49:27 +01:00
|
|
|
<div class="text-center"/>
|
2020-12-21 22:06:13 +01:00
|
|
|
<v-card>
|
|
|
|
<v-card-title class="headline">
|
|
|
|
Welcome to the Vuetify + Nuxt.js template
|
|
|
|
</v-card-title>
|
|
|
|
<v-card-text>
|
2020-12-21 22:49:27 +01:00
|
|
|
|
2020-12-21 22:06:13 +01:00
|
|
|
<p>
|
|
|
|
Vuetify is a progressive Material Design component framework for
|
|
|
|
Vue.js. It was designed to empower developers to create amazing
|
|
|
|
applications.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
For more information on Vuetify, check out the
|
|
|
|
<a
|
|
|
|
href="https://vuetifyjs.com"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2020-12-21 22:49:27 +01:00
|
|
|
documentation </a>.
|
2020-12-21 22:06:13 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
If you have questions, please join the official
|
|
|
|
<a
|
|
|
|
href="https://chat.vuetifyjs.com/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
title="chat"
|
|
|
|
>
|
2020-12-21 22:49:27 +01:00
|
|
|
discord </a>.
|
2020-12-21 22:06:13 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Find a bug? Report it on the github
|
|
|
|
<a
|
|
|
|
href="https://github.com/vuetifyjs/vuetify/issues"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
title="contribute"
|
|
|
|
>
|
2020-12-21 22:49:27 +01:00
|
|
|
issue board </a>.
|
2020-12-21 22:06:13 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Thank you for developing with Vuetify and I look forward to bringing
|
|
|
|
more exciting features in the future.
|
|
|
|
</p>
|
|
|
|
<div class="text-xs-right">
|
|
|
|
<em><small>— John Leider</small></em>
|
|
|
|
</div>
|
2020-12-21 22:49:27 +01:00
|
|
|
<hr class="my-3">
|
2020-12-21 22:06:13 +01:00
|
|
|
<a
|
|
|
|
href="https://nuxtjs.org/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
|
|
|
Nuxt Documentation
|
|
|
|
</a>
|
2020-12-21 22:49:27 +01:00
|
|
|
<br>
|
2020-12-21 22:06:13 +01:00
|
|
|
<a
|
|
|
|
href="https://github.com/nuxt/nuxt.js"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
|
|
|
Nuxt GitHub
|
|
|
|
</a>
|
|
|
|
</v-card-text>
|
|
|
|
<v-card-actions>
|
2020-12-21 22:49:27 +01:00
|
|
|
<v-spacer/>
|
|
|
|
<v-btn color="primary" nuxt to="/inspire">
|
|
|
|
Continue
|
|
|
|
</v-btn>
|
2020-12-21 22:06:13 +01:00
|
|
|
</v-card-actions>
|
|
|
|
</v-card>
|
|
|
|
</v-col>
|
|
|
|
</v-row>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
2020-12-21 22:49:27 +01:00
|
|
|
components: {}
|
2020-12-21 22:06:13 +01:00
|
|
|
}
|
|
|
|
</script>
|
2020-12-21 22:49:27 +01:00
|
|
|
|
|
|
|
<style lang="less">
|
|
|
|
|
|
|
|
</style>
|