mirror of
https://github.com/lukaszraczylo/git-velocity.git
synced 2026-06-16 03:22:47 +00:00
18 lines
364 B
Vue
18 lines
364 B
Vue
<script setup>
|
|
defineProps({
|
|
message: {
|
|
type: String,
|
|
default: 'Loading...'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex items-center justify-center min-h-[60vh]">
|
|
<div class="text-center">
|
|
<i class="fas fa-spinner fa-spin text-4xl text-primary-500 mb-4"></i>
|
|
<p class="text-gray-400">{{ message }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|