Pinafore-Web-Client-Frontend/src/routes/_components/profile/AccountProfileFilters.html

42 lines
815 B
HTML

<TabSet
label="{intl.filters}"
currentTabName={filter}
{tabs}
className="account-profile-filters"
/>
<style>
:global(.account-profile-filters) {
background: var(--account-profile-bg);
}
</style>
<script>
import TabSet from '../TabSet.html'
export default {
computed: {
tabs: ({ account }) => (
[
{
name: '',
label: 'Toots',
href: `/accounts/${account.id}`
},
{
name: 'with_replies',
label: 'Toots and replies',
href: `/accounts/${account.id}/with_replies`
},
{
name: 'media',
label: 'Media',
href: `/accounts/${account.id}/media`
}
]
)
},
components: {
TabSet
}
}
</script>