index.vue 757 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div class="container">
  3. <div>
  4. <logo />
  5. <h1 class="title">
  6. admin
  7. </h1>
  8. <h2 class="subtitle">
  9. My ultimate Nuxt.js project
  10. </h2>
  11. <div class="links">
  12. <a
  13. href="https://nuxtjs.org/"
  14. target="_blank"
  15. class="button--green"
  16. >
  17. Documentation
  18. </a>
  19. <a
  20. href="https://github.com/nuxt/nuxt.js"
  21. target="_blank"
  22. class="button--grey"
  23. >
  24. GitHub
  25. </a>
  26. </div>
  27. <a href="#" class="a-button-buy-again">Buy Now</a>
  28. </div>
  29. </div>
  30. </template>
  31. <script>
  32. import Logo from '~/components/Logo.vue'
  33. export default {
  34. components: {
  35. Logo
  36. }
  37. }
  38. </script>
  39. <style>
  40. </style>