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.

31 lines
530 B

  1. <template>
  2. <v-app id="keep">
  3. <v-app-bar
  4. app
  5. clipped-left
  6. clipped-right
  7. color=""
  8. >
  9. <slot name="leftDrawerIcon" />
  10. <nuxt-link to="/" class="top">
  11. <span class="title ml-3 mr-5">doccano</span>
  12. </nuxt-link>
  13. <v-spacer />
  14. <slot name="rightDrawerIcon" />
  15. </v-app-bar>
  16. <slot name="leftDrawer" />
  17. <slot name="rightDrawer" />
  18. <slot name="content" />
  19. </v-app>
  20. </template>
  21. <script>
  22. </script>
  23. <style scoped>
  24. .top{
  25. text-decoration: none;
  26. }
  27. </style>