Created
January 27, 2018 01:52
-
-
Save hibuno/7a381b051aa8edf8afefd0ddeafe5866 to your computer and use it in GitHub Desktop.
Change some code at default.vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<!-- Navigation --> | |
<Navigation/> | |
<!-- Content --> | |
<div class="container content"> | |
<!-- Content --> | |
<nuxt/> | |
</div> | |
<!-- Footer --> | |
<div class="footer"> | |
Copyright here | |
</div> | |
</div> | |
</template> | |
<script> | |
import Navigation from '~/components/navigation.vue' | |
import Banner from '~/components/banner.vue' | |
export default { | |
components: { | |
Navigation, | |
Banner | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment