This commit is contained in:
syuilo 2019-02-18 09:51:22 +09:00
parent 54d40420ad
commit f78b28b995
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -1,13 +1,12 @@
<template> <template>
<div class="ibpylqas"> <div>
<div v-if="src == 'home' && alone" class="explore">
<p>{{ $t('@.empty-timeline-info.follow-users-to-make-your-timeline') }}</p>
<router-link to="/explore">{{ $t('@.empty-timeline-info.explore') }}</router-link>
</div>
<mk-notes ref="timeline" :make-promise="makePromise" @inited="() => $emit('loaded')"> <mk-notes ref="timeline" :make-promise="makePromise" @inited="() => $emit('loaded')">
<template v-slot:header> <template v-slot:header>
<slot></slot> <slot></slot>
<div v-if="src == 'home' && alone" class="ibpylqas">
<p>{{ $t('@.empty-timeline-info.follow-users-to-make-your-timeline') }}</p>
<router-link to="/explore">{{ $t('@.empty-timeline-info.explore') }}</router-link>
</div>
</template> </template>
<template v-slot:empty> <template v-slot:empty>
<fa :icon="['far', 'comments']"/>{{ $t('empty') }} <fa :icon="['far', 'comments']"/>{{ $t('empty') }}
@ -142,14 +141,13 @@ export default Vue.extend({
<style lang="stylus" scoped> <style lang="stylus" scoped>
.ibpylqas .ibpylqas
> .explore padding 16px
padding 16px text-align center
text-align center color var(--text)
color var(--text) border-bottom solid var(--lineWidth) var(--faceDivider)
border-bottom solid var(--lineWidth) var(--faceDivider) font-size 14px
font-size 14px
> p > p
margin 0 0 8px 0 margin 0 0 8px 0
</style> </style>