You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
803 B

  1. <template>
  2. <v-app>
  3. <v-app-bar
  4. color="indigo lighten-1"
  5. dark
  6. app
  7. >
  8. <v-toolbar-title v-text="title" />
  9. </v-app-bar>
  10. <nuxt />
  11. <v-footer
  12. color="primary lighten-1"
  13. padless
  14. >
  15. <v-layout
  16. justify-center
  17. wrap
  18. >
  19. <v-flex
  20. primary
  21. lighten-2
  22. py-4
  23. text-center
  24. white--text
  25. xs12
  26. >
  27. {{ new Date().getFullYear() }} <strong>Vuetify</strong>
  28. </v-flex>
  29. </v-layout>
  30. </v-footer>
  31. </v-app>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. title: 'doccano',
  38. links: [
  39. 'Home',
  40. 'About Us',
  41. 'Team',
  42. 'Services',
  43. 'Blog',
  44. 'Contact Us'
  45. ]
  46. }
  47. }
  48. }
  49. </script>