123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div class="container">
- <div>
- <logo />
- <h1 class="title">
- admin
- </h1>
- <h2 class="subtitle">
- My ultimate Nuxt.js project
- </h2>
- <div class="links">
- <a
- href="https://nuxtjs.org/"
- target="_blank"
- class="button--green"
- >
- Documentation
- </a>
- <a
- href="https://github.com/nuxt/nuxt.js"
- target="_blank"
- class="button--grey"
- >
- GitHub
- </a>
- </div>
- <a href="#" class="a-button-buy-again">Buy Now</a>
- </div>
- </div>
- </template>
- <script>
- import Logo from '~/components/Logo.vue'
- export default {
- components: {
- Logo
- }
- }
- </script>
- <style>
- </style>
|