Toolbar.vue 507 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <v-toolbar flat class="ot_light_grey toolbarForm" dark dense rounded>
  3. <v-toolbar-title class="ot_dark_grey--text form_main_title">
  4. <v-icon class="ot_white--text ot_green icon">
  5. {{icon}}
  6. </v-icon>
  7. {{ $t(title) }}
  8. </v-toolbar-title>
  9. </v-toolbar>
  10. </template>
  11. <script>
  12. export default {
  13. props: {
  14. title: {
  15. type: String,
  16. required: true
  17. },
  18. icon: {
  19. type: String,
  20. required: true
  21. },
  22. }
  23. }
  24. </script>
  25. <style scoped>
  26. </style>