mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
The crucial test is still missing: Write a test to check that no more than one loading spinner is visible all the time. @Tirokk FYI I wrote a page component test and made sure that the test will also fail if the implementation is broken.
16 lines
352 B
Vue
16 lines
352 B
Vue
<template>
|
|
<ds-space class="load-more" 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>
|