| 1234567891011121314151617181920212223242526272829 |
- <template>
- <v-toolbar flat class="ot_light_grey toolbarForm" dark dense rounded>
- <v-toolbar-title class="ot_dark_grey--text form_main_title">
- <v-icon class="ot_white--text ot_green icon">
- {{icon}}
- </v-icon>
- {{ $t(title) }}
- </v-toolbar-title>
- </v-toolbar>
- </template>
- <script>
- export default {
- props: {
- title: {
- type: String,
- required: true
- },
- icon: {
- type: String,
- required: true
- },
- }
- }
- </script>
- <style scoped>
- </style>
|