2018-02-11 00:03:28 +00:00
|
|
|
|
<:Head>
|
|
|
|
|
<title>Pinafore – Blocked users</title>
|
|
|
|
|
</:Head>
|
|
|
|
|
<Layout page='blocked'>
|
2018-03-14 00:14:57 +00:00
|
|
|
|
<LazyPage :pageComponent :params />
|
2018-02-11 00:03:28 +00:00
|
|
|
|
</Layout>
|
|
|
|
|
<script>
|
|
|
|
|
import Layout from './_components/Layout.html'
|
2018-03-14 00:14:57 +00:00
|
|
|
|
import LazyPage from './_components/LazyPage.html'
|
|
|
|
|
import pageComponent from './_pages/blocked.html'
|
2018-02-11 00:03:28 +00:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
Layout,
|
2018-03-14 00:14:57 +00:00
|
|
|
|
LazyPage
|
|
|
|
|
},
|
|
|
|
|
data: () => ({
|
|
|
|
|
pageComponent
|
|
|
|
|
})
|
2018-02-11 00:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
</script>
|