pinafore/src/routes/accounts/[accountId]/follows.html

27 wiersze
675 B
HTML
Czysty Zwykły widok Historia

<!-- TODO: this should probably be formatted as intl rather than concatenated -->
<Title name="{profileName}{intl.follows}" />
<LazyPage {pageComponent} {params} />
2018-04-22 18:06:54 +00:00
<script>
import Title from '../../_components/Title.html'
2018-04-22 18:06:54 +00:00
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/accounts/[accountId]/follows.html'
export default {
components: {
Title,
2018-04-22 18:06:54 +00:00
LazyPage
},
data: () => ({
pageComponent
}),
computed: {
profileName: ({ $currentAccountProfile }) => {
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
}
}
2018-04-22 18:06:54 +00:00
}
</script>