Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. <template>
  2. <v-container>
  3. <v-layout
  4. text-xs-center
  5. wrap
  6. >
  7. <v-flex xs12>
  8. <v-img
  9. :src="require('../assets/logo.svg')"
  10. class="my-3"
  11. contain
  12. height="200"
  13. ></v-img>
  14. </v-flex>
  15.  
  16. <v-flex mb-4>
  17. <h1 class="display-2 font-weight-bold mb-3">
  18. Welcome to Vuetify
  19. </h1>
  20. <p class="subheading font-weight-regular">
  21. For help and collaboration with other Vuetify developers,
  22. <br>please join our online
  23. <a href="https://community.vuetifyjs.com" target="_blank">Discord Community</a>
  24. </p>
  25. </v-flex>
  26.  
  27. <v-flex
  28. mb-5
  29. xs12
  30. >
  31. <h2 class="headline font-weight-bold mb-3">What's next?</h2>
  32.  
  33. <v-layout justify-center>
  34. <a
  35. v-for="(next, i) in whatsNext"
  36. :key="i"
  37. :href="next.href"
  38. class="subheading mx-3"
  39. target="_blank"
  40. >
  41. {{ next.text }}
  42. </a>
  43. </v-layout>
  44. </v-flex>
  45.  
  46. <v-flex
  47. xs12
  48. mb-5
  49. >
  50. <h2 class="headline font-weight-bold mb-3">Important Links</h2>
  51.  
  52. <v-layout justify-center>
  53. <a
  54. v-for="(link, i) in importantLinks"
  55. :key="i"
  56. :href="link.href"
  57. class="subheading mx-3"
  58. target="_blank"
  59. >
  60. {{ link.text }}
  61. </a>
  62. </v-layout>
  63. </v-flex>
  64.  
  65. <v-flex
  66. xs12
  67. mb-5
  68. >
  69. <h2 class="headline font-weight-bold mb-3">Ecosystem</h2>
  70.  
  71. <v-layout justify-center>
  72. <a
  73. v-for="(eco, i) in ecosystem"
  74. :key="i"
  75. :href="eco.href"
  76. class="subheading mx-3"
  77. target="_blank"
  78. >
  79. {{ eco.text }}
  80. </a>
  81. </v-layout>
  82. </v-flex>
  83. </v-layout>
  84. </v-container>
  85. </template>
  86.  
  87. <script>
  88. export default {
  89. data: () => ({
  90. ecosystem: [
  91. {
  92. text: 'vuetify-loader',
  93. href: 'https://github.com/vuetifyjs/vuetify-loader'
  94. },
  95. {
  96. text: 'github',
  97. href: 'https://github.com/vuetifyjs/vuetify'
  98. },
  99. {
  100. text: 'awesome-vuetify',
  101. href: 'https://github.com/vuetifyjs/awesome-vuetify'
  102. }
  103. ],
  104. importantLinks: [
  105. {
  106. text: 'Documentation',
  107. href: 'https://vuetifyjs.com'
  108. },
  109. {
  110. text: 'Chat',
  111. href: 'https://community.vuetifyjs.com'
  112. },
  113. {
  114. text: 'Made with Vuetify',
  115. href: 'https://madewithvuetifyjs.com'
  116. },
  117. {
  118. text: 'Twitter',
  119. href: 'https://twitter.com/vuetifyjs'
  120. },
  121. {
  122. text: 'Articles',
  123. href: 'https://medium.com/vuetify'
  124. }
  125. ],
  126. whatsNext: [
  127. {
  128. text: 'Explore components',
  129. href: 'https://vuetifyjs.com/components/api-explorer'
  130. },
  131. {
  132. text: 'Select a layout',
  133. href: 'https://vuetifyjs.com/layout/pre-defined'
  134. },
  135. {
  136. text: 'Frequently Asked Questions',
  137. href: 'https://vuetifyjs.com/getting-started/frequently-asked-questions'
  138. }
  139.  
  140. ]
  141. })
  142. }
  143. </script>
  144.  
  145. <style>
  146.  
  147. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement