Created
January 21, 2018 15:49
-
-
Save hibuno/9ab6edc4a1b23e0efe793df5fdf34104 to your computer and use it in GitHub Desktop.
Next part of blog.vue file from creating page on Nuxt JS
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"> | |
<div class="row"> | |
<div class="col-md-9 col-lg-9"> | |
<!-- Content --> | |
<nuxt/> | |
</div> | |
<div class="col-md-3 col-lg-3"> | |
<!-- Sidebar --> | |
<h4>Ini side bar</h4> | |
</div> | |
</div> | |
</div> | |
<!-- Footer --> | |
<h4>Ini footer</h4> | |
</div> | |
</template> | |
<script> | |
import Navigation from '~/components/navigation.vue' | |
export default { | |
components: { | |
Navigation | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment