19 lines
293 B
HTML
19 lines
293 B
HTML
<:Head>
|
|
<title>Settings</title>
|
|
</:Head>
|
|
|
|
<Layout page='settings'>
|
|
<h1>Settings</h1>
|
|
|
|
<p>This is the 'settings' page. There's not much here.</p>
|
|
</Layout>
|
|
|
|
<script>
|
|
import Layout from '../_components/Layout.html';
|
|
|
|
export default {
|
|
components: {
|
|
Layout
|
|
}
|
|
};
|
|
</script> |