Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 27, 2018 01:52
Show Gist options
  • Save hibuno/7a381b051aa8edf8afefd0ddeafe5866 to your computer and use it in GitHub Desktop.
Save hibuno/7a381b051aa8edf8afefd0ddeafe5866 to your computer and use it in GitHub Desktop.
Change some code at default.vue
<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