2022-11-27 07:49:18 -08:00
|
|
|
<!-- TODO: this should probably be formatted as intl rather than concatenated -->
|
|
|
|
<Title name="{profileName}{intl.followers}" />
|
2018-12-11 07:31:48 -08:00
|
|
|
|
2018-05-01 17:05:36 -07:00
|
|
|
<LazyPage {pageComponent} {params} />
|
2018-12-11 07:31:48 -08:00
|
|
|
|
2018-04-22 20:06:54 +02:00
|
|
|
<script>
|
2018-11-12 18:28:43 -08:00
|
|
|
import Title from '../../_components/Title.html'
|
2018-04-22 20:06:54 +02:00
|
|
|
import LazyPage from '../../_components/LazyPage.html'
|
|
|
|
import pageComponent from '../../_pages/accounts/[accountId]/followers.html'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2018-12-11 07:31:48 -08:00
|
|
|
|
2018-11-12 18:28:43 -08:00
|
|
|
Title,
|
2018-04-22 20:06:54 +02:00
|
|
|
LazyPage
|
|
|
|
},
|
|
|
|
data: () => ({
|
|
|
|
pageComponent
|
2022-11-27 07:49:18 -08:00
|
|
|
}),
|
|
|
|
computed: {
|
|
|
|
profileName: ({ $currentAccountProfile }) => {
|
|
|
|
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
|
|
|
|
}
|
|
|
|
}
|
2018-04-22 20:06:54 +02:00
|
|
|
}
|
|
|
|
</script>
|