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