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.

38 lines
674 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-text-field
  14. solo-inverted
  15. flat
  16. hide-details
  17. label="Search"
  18. prepend-inner-icon="search"
  19. />
  20. <v-spacer />
  21. <slot name="rightDrawerIcon" />
  22. </v-app-bar>
  23. <slot name="leftDrawer" />
  24. <slot name="rightDrawer" />
  25. <slot name="content" />
  26. </v-app>
  27. </template>
  28. <script>
  29. </script>
  30. <style scoped>
  31. .top{
  32. text-decoration: none;
  33. }
  34. </style>