index.vue 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <v-row justify="center" align="center">
  3. <v-col cols="12" sm="8" md="6">
  4. <div class="text-center">
  5. <logo />
  6. <vuetify-logo />
  7. </div>
  8. <v-card>
  9. <v-card-title class="headline">
  10. Welcome to the Vuetify + Nuxt.js template
  11. </v-card-title>
  12. <v-card-text>
  13. <p>Vuetify is a progressive Material Design component framework for Vue.js. It was designed to empower developers to create amazing applications.</p>
  14. <p>
  15. For more information on Vuetify, check out the <a
  16. href="https://vuetifyjs.com"
  17. target="_blank"
  18. rel="noopener noreferrer"
  19. >
  20. documentation
  21. </a>.
  22. </p>
  23. <p>
  24. If you have questions, please join the official <a
  25. href="https://chat.vuetifyjs.com/"
  26. target="_blank"
  27. rel="noopener noreferrer"
  28. title="chat"
  29. >
  30. discord
  31. </a>.
  32. </p>
  33. <p>
  34. Find a bug? Report it on the github <a
  35. href="https://github.com/vuetifyjs/vuetify/issues"
  36. target="_blank"
  37. rel="noopener noreferrer"
  38. title="contribute"
  39. >
  40. issue board
  41. </a>.
  42. </p>
  43. <p>Thank you for developing with Vuetify and I look forward to bringing more exciting features in the future.</p>
  44. <div class="text-xs-right">
  45. <em><small>&mdash; John Leider</small></em>
  46. </div>
  47. <hr class="my-3">
  48. <a
  49. href="https://nuxtjs.org/"
  50. target="_blank"
  51. rel="noopener noreferrer"
  52. >
  53. Nuxt Documentation
  54. </a>
  55. <br>
  56. <a
  57. href="https://github.com/nuxt/nuxt.js"
  58. target="_blank"
  59. rel="noopener noreferrer"
  60. >
  61. Nuxt GitHub
  62. </a>
  63. </v-card-text>
  64. <v-card-actions>
  65. <v-spacer />
  66. <v-btn
  67. color="primary"
  68. nuxt
  69. to="/inspire"
  70. >
  71. Continue
  72. </v-btn>
  73. </v-card-actions>
  74. </v-card>
  75. </v-col>
  76. </v-row>
  77. </template>
  78. <script>
  79. import Logo from '~/components/Logo.vue'
  80. import VuetifyLogo from '~/components/VuetifyLogo.vue'
  81. export default {
  82. components: {
  83. Logo,
  84. VuetifyLogo
  85. }
  86. }
  87. </script>