pinafore/routes/settings/about.html

21 lines
432 B
HTML
Raw Normal View History

2018-01-09 01:44:29 +00:00
<:Head>
2018-02-09 06:38:33 +00:00
<title>Pinafore About</title>
2018-01-09 01:44:29 +00:00
</:Head>
<Layout page='settings'>
<LazyPage :pageComponent :params />
2018-01-09 01:44:29 +00:00
</Layout>
<script>
import Layout from '../_components/Layout.html'
import LazyPage from '../_components/LazyPage.html'
import pageComponent from '../_pages/settings/about.html'
2018-01-09 01:44:29 +00:00
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
2018-01-09 01:44:29 +00:00
</script>