2018-01-06 15:51:25 -08:00
|
|
|
<:Head>
|
2018-01-08 18:14:21 -08:00
|
|
|
<title>Pinafore</title>
|
2018-01-06 15:51:25 -08:00
|
|
|
</:Head>
|
|
|
|
|
|
|
|
<Layout page='home'>
|
2018-01-08 18:14:21 -08:00
|
|
|
{{#if $isUserLoggedIn}}
|
2018-01-14 23:24:27 -08:00
|
|
|
<LazyTimeline target='home' />
|
2018-01-08 18:14:21 -08:00
|
|
|
{{else}}
|
|
|
|
<NotLoggedInHome/>
|
|
|
|
{{/if}}
|
2018-01-06 15:51:25 -08:00
|
|
|
</Layout>
|
|
|
|
|
2018-01-08 18:14:21 -08:00
|
|
|
|
2018-01-06 15:51:25 -08:00
|
|
|
<script>
|
2018-01-08 18:14:21 -08:00
|
|
|
import Layout from './_components/Layout.html'
|
|
|
|
import NotLoggedInHome from './_components/NotLoggedInHome.html'
|
2018-01-14 23:24:27 -08:00
|
|
|
import LazyTimeline from './_components/LazyTimeline.html'
|
2018-01-08 18:14:21 -08:00
|
|
|
import { store } from './_utils/store.js'
|
2018-01-06 15:51:25 -08:00
|
|
|
|
|
|
|
export default {
|
2018-01-08 10:13:42 -08:00
|
|
|
store: () => store,
|
2018-01-06 15:51:25 -08:00
|
|
|
components: {
|
2018-01-08 18:14:21 -08:00
|
|
|
Layout,
|
2018-01-14 23:24:27 -08:00
|
|
|
LazyTimeline,
|
2018-01-08 18:14:21 -08:00
|
|
|
NotLoggedInHome
|
2018-01-06 15:51:25 -08:00
|
|
|
}
|
2018-01-07 22:13:15 -08:00
|
|
|
}
|
2018-01-07 16:12:11 -08:00
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|