pinafore/src/routes/accounts/[accountId]/media.html
Nolan Lawson 6744de59f8
feat: add account page filters (#1124)
* start on account page filters

fixes #1021

* making progress

* more progress, just need style now

* fix lint

* fix style and add test
2019-03-30 21:48:49 -07:00

21 lines
404 B
HTML

<Title name="Profile with media" />
<LazyPage {pageComponent} {params} />
<script>
import Title from '../../_components/Title.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/accounts/[accountId]/media.html'
export default {
components: {
Title,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>