This commit is contained in:
syuilo 2018-11-12 01:20:26 +09:00
parent c2038bec73
commit 0b40194d31
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 9 additions and 4 deletions

View file

@ -4,7 +4,9 @@
<template v-for="favorite in favorites"> <template v-for="favorite in favorites">
<mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/> <mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/>
</template> </template>
<a v-if="existMore" @click="more">{{ $t('@.load-more') }}</a> <div class="more" v-if="existMore">
<ui-button inline @click="more">{{ $t('@.load-more') }}</ui-button>
</div>
</main> </main>
</mk-ui> </mk-ui>
</template> </template>
@ -75,4 +77,9 @@ main
> .post > .post
margin-bottom 16px margin-bottom 16px
> .more
margin 32px 16px 16px 16px
text-align center
</style> </style>

View file

@ -6,7 +6,7 @@
<template v-for="favorite in favorites"> <template v-for="favorite in favorites">
<mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/> <mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/>
</template> </template>
<a v-if="existMore" @click="more">{{ $t('@.load-more') }}</a> <ui-button v-if="existMore" @click="more">{{ $t('@.load-more') }}</ui-button>
</main> </main>
</mk-ui> </mk-ui>
</template> </template>
@ -73,8 +73,6 @@ export default Vue.extend({
</script> </script>
<style lang="stylus" scoped> <style lang="stylus" scoped>
main main
width 100% width 100%
max-width 680px max-width 680px