mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-10 04:22:13 +10:00
9 lines
252 B
Vue
9 lines
252 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{ libraryDownloadError: boolean }>();
|
|
</script>
|
|
<template>
|
|
<div v-if="libraryDownloadError" class="mx-auto pt-10 text-center text-gray-500">
|
|
Library Failed to update
|
|
</div>
|
|
|
|
</template> |