pinafore/routes/index.html

30 rindas
Nav EOL
568 B
HTML

Šī datne satur neviennozīmīgas unikoda rakstzīmes

Šī datne satur unikoda rakstzīmes, kas var tikt sajauktas ar citām rakstzīmēm. Ja šķiet, ka tas ir ar nolūku, šo brīdinājumu var droši neņemt vērā. Jāizmanto atsoļa taustiņš (Esc), lai tās atklātu.

<:Head>
<title>Pinafore Home</title>
</:Head>
<Layout page='home'>
{{#if $isUserLoggedIn}}
<LazyTimeline timeline='home' />
{{else}}
<NotLoggedInHome/>
{{/if}}
</Layout>
<script>
import Layout from './_components/Layout.html'
import NotLoggedInHome from './_components/NotLoggedInHome.html'
import LazyTimeline from './_components/timeline/LazyTimeline.html'
import { store } from './_store/store.js'
export default {
store: () => store,
components: {
Layout,
LazyTimeline,
NotLoggedInHome
}
}
</script>
<style>
</style>