Skip to content

Instantly share code, notes, and snippets.

@bodhiprice
Created February 27, 2018 01:40
Show Gist options
  • Save bodhiprice/ce32aad4a0f7483f7e28b9461ad6f4ab to your computer and use it in GitHub Desktop.
Save bodhiprice/ce32aad4a0f7483f7e28b9461ad6f4ab to your computer and use it in GitHub Desktop.
<template>
<section class="container">
<div>
<app-logo>
<h1 class="title">
Demo
</h1>
<h2 class="subtitle">
My project
</h2>
</app-logo></div>
</section>
</template>
<script>
import AppLogo from '~/components/AppLogo.vue'
export default {
components: {
AppLogo
}
}
</script>
<style>
.container {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment