1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 15:17:37 +01:00

16 lines
190 B
HTML
Raw Normal View History

2018-01-08 17:44:29 -08:00
<Nav page={{page}} />
2018-01-06 15:51:25 -08:00
2018-01-15 18:29:28 -08:00
<div class="container">
<main>
<slot></slot>
</main>
</div>
2018-01-06 15:51:25 -08:00
<script>
import Nav from './Nav.html';
export default {
components: {
Nav
}
};
</script>