mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
22 lines
372 B
Vue
22 lines
372 B
Vue
<template>
|
|
<ds-space
|
|
margin-top="large"
|
|
style="text-align: center">
|
|
<ds-button
|
|
:icon="loading ? 'spinner' : 'arrow-down'"
|
|
:disabled="loading"
|
|
ghost
|
|
@click="$emit('click')">
|
|
mehr laden
|
|
</ds-button>
|
|
</ds-space>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
loading: { type: Boolean, default: false }
|
|
}
|
|
}
|
|
</script>
|