kopia lustrzana https://github.com/nolanlawson/pinafore
27 wiersze
617 B
HTML
27 wiersze
617 B
HTML
<:Head>
|
|
<title>Pinafore – Notifications</title>
|
|
</:Head>
|
|
|
|
<Layout page='notifications' virtual="true" virtualStoreKey="federated">
|
|
<HiddenFromSSR>
|
|
<FreeTextLayout>
|
|
<h1>Notifications</h1>
|
|
|
|
<p>Your notifications will appear here when logged in.</p>
|
|
</FreeTextLayout>
|
|
</HiddenFromSSR>
|
|
</Layout>
|
|
|
|
<script>
|
|
import Layout from './_components/Layout.html';
|
|
import FreeTextLayout from './_components/FreeTextLayout.html'
|
|
import HiddenFromSSR from './_components/HiddenFromSSR'
|
|
|
|
export default {
|
|
components: {
|
|
Layout,
|
|
FreeTextLayout,
|
|
HiddenFromSSR
|
|
},
|
|
};
|
|
</script> |