Loader.vue 499 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <v-content>
  3. <v-container fluid fill-height>
  4. <v-layout align-center justify-center style="flex-direction: column">
  5. <v-progress-circular
  6. :size="50"
  7. color="primary"
  8. indeterminate
  9. />
  10. <div class="mt-3">{{ message }}</div>
  11. </v-layout>
  12. </v-container>
  13. </v-content>
  14. </template>
  15. <script>
  16. export default {
  17. name: 'Loader',
  18. props: {
  19. message: {
  20. type: String,
  21. default: 'Loading...'
  22. }
  23. }
  24. }
  25. </script>