kopia lustrzana https://github.com/nolanlawson/pinafore
26 wiersze
633 B
HTML
26 wiersze
633 B
HTML
{#if $isUserLoggedIn}
|
|
<TimelinePage timeline="notifications" />
|
|
{:else}
|
|
<HiddenFromSSR>
|
|
<FreeTextLayout>
|
|
<h1>Notifications</h1>
|
|
|
|
<p>Your notifications will appear here when logged in.</p>
|
|
</FreeTextLayout>
|
|
</HiddenFromSSR>
|
|
{/if}
|
|
<script>
|
|
import FreeTextLayout from '.././_components/FreeTextLayout.html'
|
|
import { store } from '.././_store/store.js'
|
|
import HiddenFromSSR from '.././_components/HiddenFromSSR'
|
|
import TimelinePage from '../_components/TimelinePage.html'
|
|
|
|
export default {
|
|
store: () => store,
|
|
components: {
|
|
FreeTextLayout,
|
|
HiddenFromSSR,
|
|
TimelinePage
|
|
}
|
|
}
|
|
</script> |