SystemBar.vue 532 B

12345678910111213141516171819202122232425262728293031
  1. <!--
  2. System bars
  3. -->
  4. <template>
  5. <v-system-bar
  6. dark
  7. height="50"
  8. :class="'d-flex flex-row justify-center align-center text-center bg-' + backgroundColor + ' text-' + textColor"
  9. >
  10. <slot name="bar.text" />
  11. </v-system-bar>
  12. </template>
  13. <script setup lang="ts">
  14. const props = defineProps({
  15. backgroundColor: {
  16. type: String,
  17. required: false,
  18. default: '#eeeeee'
  19. },
  20. textColor: {
  21. type: String,
  22. required: false,
  23. default: '#5f5f5f'
  24. }
  25. })
  26. </script>
  27. <style scoped lang="scss">
  28. </style>