diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-10-01 20:08:31 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-10-01 20:08:31 -0400 |
| commit | e96f529b8555c923b95f9ab074d081004ad7dae6 (patch) | |
| tree | 052f17fd749b9678cf192cf7bbe3a24a1e3a3d08 /pages | |
| download | chine-projet-e96f529b8555c923b95f9ab074d081004ad7dae6.tar.gz chine-projet-e96f529b8555c923b95f9ab074d081004ad7dae6.tar.bz2 chine-projet-e96f529b8555c923b95f9ab074d081004ad7dae6.zip | |
Inital commit
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/README.md | 6 | ||||
| -rw-r--r-- | pages/index.vue | 93 | ||||
| -rw-r--r-- | pages/inspire.vue | 15 |
3 files changed, 114 insertions, 0 deletions
diff --git a/pages/README.md b/pages/README.md new file mode 100644 index 0000000..1d5d48b --- /dev/null +++ b/pages/README.md @@ -0,0 +1,6 @@ +# PAGES + +This directory contains your Application Views and Routes. +The framework reads all the `*.vue` files inside this directory and creates the router of your application. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing). diff --git a/pages/index.vue b/pages/index.vue new file mode 100644 index 0000000..4bb8197 --- /dev/null +++ b/pages/index.vue @@ -0,0 +1,93 @@ +<template> + <v-row justify="center" align="center"> + <v-col cols="12" sm="8" md="6"> + <div class="text-center"> + <logo /> + <vuetify-logo /> + </div> + <v-card> + <v-card-title class="headline"> + Welcome to the Vuetify + Nuxt.js template + </v-card-title> + <v-card-text> + <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" + > + documentation </a + >. + </p> + <p> + If you have questions, please join the official + <a + href="https://chat.vuetifyjs.com/" + target="_blank" + rel="noopener noreferrer" + title="chat" + > + discord </a + >. + </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" + > + issue board </a + >. + </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> + <hr class="my-3" /> + <a + href="https://nuxtjs.org/" + target="_blank" + rel="noopener noreferrer" + > + Nuxt Documentation + </a> + <br /> + <a + href="https://github.com/nuxt/nuxt.js" + target="_blank" + rel="noopener noreferrer" + > + Nuxt GitHub + </a> + </v-card-text> + <v-card-actions> + <v-spacer /> + <v-btn color="primary" nuxt to="/inspire"> Continue </v-btn> + </v-card-actions> + </v-card> + </v-col> + </v-row> +</template> + +<script> +import Logo from '~/components/Logo.vue' +import VuetifyLogo from '~/components/VuetifyLogo.vue' + +export default { + components: { + Logo, + VuetifyLogo, + }, +} +</script> diff --git a/pages/inspire.vue b/pages/inspire.vue new file mode 100644 index 0000000..4ed16f9 --- /dev/null +++ b/pages/inspire.vue @@ -0,0 +1,15 @@ +<template> + <v-layout> + <v-flex class="text-center"> + <img src="/v.png" alt="Vuetify.js" class="mb-5" /> + <blockquote class="blockquote"> + “First, solve the problem. Then, write the code.” + <footer> + <small> + <em>—John Johnson</em> + </small> + </footer> + </blockquote> + </v-flex> + </v-layout> +</template> |
